Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c295036b authored by Andi Kleen's avatar Andi Kleen Committed by Arnaldo Carvalho de Melo
Browse files

perf tools: Add missing newline to expr parser error messages

parent 5e97665f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ all_expr: expr { *final_val = $1; }

expr:	  NUMBER
	| ID			{ if (lookup_id(ctx, $1, &$$) < 0) {
					pr_debug("%s not found", $1);
					pr_debug("%s not found\n", $1);
					YYABORT;
				  }
				}