From: asterix Date: Sun, 28 Nov 2010 19:30:55 +0000 (+0000) Subject: Reformat. X-Git-Tag: 2.7.0~351 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=6ccc72af0115bd4edf1e09ced1be31e05b679428;p=bertos.git Reformat. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4586 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/mware/parser.h b/bertos/mware/parser.h index 7e837c60..ca1d26e9 100644 --- a/bertos/mware/parser.h +++ b/bertos/mware/parser.h @@ -70,8 +70,8 @@ * // Declare a buzzer command * MAKE_CMD(beep, "d", "", * ({ - * buz_beep(args[1].l); - * RC_OK; + * buz_beep(args[1].l); + * RC_OK; * }), 0) * * // initialize the parser @@ -92,7 +92,7 @@ * //Execute command * if(!parser_execute_cmd(templ, args)) * { - * // error + * // error * } * // Now args contain the outputs of the function, you can send it * // back to the caller