# HG changeset patch # User Andre Heinecke # Date 1396455359 0 # Node ID ccb00bf48b7588dd0677284923d6a5c9591c6a39 # Parent 56507c3d5f1e55fe482e915a9deb6e44cd37f8ab Fix misplaced endif diff -r 56507c3d5f1e -r ccb00bf48b75 cinst/main.c --- a/cinst/main.c Wed Apr 02 16:13:37 2014 +0000 +++ b/cinst/main.c Wed Apr 02 16:15:59 2014 +0000 @@ -200,6 +200,11 @@ list_status_t list_status; bool do_uninstall = false; + for (ret = 0; ret < argc; ret++) + { + printf("Arg %i : %s \n", ret, argv[ret]); + } + /* Some very static argument parsing. list= and instructions= is only added to make it more transparent how this programm is called if a user looks at the detailed uac dialog. */ @@ -259,8 +264,8 @@ #else /*TODO*/ return 0; +#endif } -#endif ret = read_instructions_file (instruction_file_name, &to_install, &to_remove);