fixed quite old typo...

This commit is contained in:
Marcel Otte 2016-03-27 20:58:07 +02:00
parent 89f7c53e4d
commit 25e6e78881
1 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,7 @@ void configureDefaultSet() {
CmdLO_AddPossibleParameter("example", "test2");
}
#define ASSERT(x,y) if(!(x)) printf("ASSERT FAILED! '%s'.\n",y); else printf("ASSERT '%s' succeded.\n",y)
#define ASSERT(x,y) if(!(x)) printf("ASSERT FAILED! '%s'.\n",y); else printf("ASSERT '%s' succeeded.\n",y)
int main(int argc, char** argv) {
// configure the options
@ -182,4 +182,3 @@ int main(int argc, char** argv) {
"something value count");
return 0;
}