Skip to content
Snippets Groups Projects

Added newline and fixed type in error message

Merged Tobias Kahlki requested to merge fix_typo into main
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -640,7 +640,7 @@ int get_touchscreen_range( struct touchscreen * t, const char * touchdevice )
if ( ! EvdevBitIsSet(abs_bitmask, ev)) {
ev = ABS_MT_POSITION_X;
if ( ! EvdevBitIsSet(abs_bitmask, ev)) {
pr_err("No Absolut %c axis found, can't get maximum.\n", a);
pr_err("No absolute %c axis found, can't get maximum.\n", a);
continue;
}
}
@@ -653,7 +653,7 @@ int get_touchscreen_range( struct touchscreen * t, const char * touchdevice )
if( absinfo[i].minimum != 0 )
{
pr_err("The absolute axis %c does not start at 0, expect errors.", a);
pr_err("The absolute axis %c does not start at 0, expect errors.\n", a);
}
if( i == 0 )
Loading