update readme

This commit is contained in:
vrd
2023-10-18 13:31:50 +03:00
parent 11b2cef4f0
commit bcf73daaa9
3 changed files with 18 additions and 7 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ int main(int argc, char* argv[])
cout << "Usage: cppipe [-g] FILE [ARGUMENTS]...\n";
return 1;
}
if(!strcmp(argv[1], "--help"))
if( !strcmp(argv[1], "--help") )
{
cout << "Usage: cppipe [-g] FILE [ARGUMENTS]...\n"
<< "Compile and run C++ source FILE that uses the cppipe library.\n"
@@ -31,7 +31,7 @@ int main(int argc, char* argv[])
bool debug = false;
int file_arg = 1;
if(!strcmp(argv[1], "-g"))
if( !strcmp(argv[1], "-g") )
{
if(argc < 3)
{