Skip to content
Snippets Groups Projects
Commit c365bfd6 authored by Tobias Kahlki's avatar Tobias Kahlki
Browse files

Added newline and fixed type in error message

parent 5f49ae86
No related branches found
No related tags found
1 merge request!69Added newline and fixed type in error message
Pipeline #51662 passed with stage
in 7 seconds
...@@ -640,7 +640,7 @@ int get_touchscreen_range( struct touchscreen * t, const char * touchdevice ) ...@@ -640,7 +640,7 @@ int get_touchscreen_range( struct touchscreen * t, const char * touchdevice )
if ( ! EvdevBitIsSet(abs_bitmask, ev)) { if ( ! EvdevBitIsSet(abs_bitmask, ev)) {
ev = ABS_MT_POSITION_X; ev = ABS_MT_POSITION_X;
if ( ! EvdevBitIsSet(abs_bitmask, ev)) { 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; continue;
} }
} }
...@@ -653,7 +653,7 @@ int get_touchscreen_range( struct touchscreen * t, const char * touchdevice ) ...@@ -653,7 +653,7 @@ int get_touchscreen_range( struct touchscreen * t, const char * touchdevice )
if( absinfo[i].minimum != 0 ) 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 ) if( i == 0 )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment