comparison src/proto.nacltai.c @ 61:66d9d80215f0

Fixed -h and -v return status, fixed source file permissions (thanks github.com/rotty)
author Ivo Smits <Ivo@UFO-Net.nl>
date Wed, 04 Jan 2017 21:42:38 +0100
parents 5685fad38195
children 5b9e742bb704
comparison
equal deleted inserted replaced
60:81dfc3046d62 61:66d9d80215f0
174 }; 174 };
175 175
176 #ifndef COMBINED_BINARY 176 #ifndef COMBINED_BINARY
177 int main(int argc, char** argv) { 177 int main(int argc, char** argv) {
178 print_header(); 178 print_header();
179 if (qtprocessargs(argc, argv) < 0) return -1; 179 int rc = qtprocessargs(argc, argv);
180 if (rc <= 0) return rc;
180 return qtrun(&qtproto_nacltai); 181 return qtrun(&qtproto_nacltai);
181 } 182 }
182 #endif 183 #endif