comparison src/proto.raw.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 d9f5caa13898
children
comparison
equal deleted inserted replaced
60:81dfc3046d62 61:66d9d80215f0
48 }; 48 };
49 49
50 #ifndef COMBINED_BINARY 50 #ifndef COMBINED_BINARY
51 int main(int argc, char** argv) { 51 int main(int argc, char** argv) {
52 print_header(); 52 print_header();
53 if (qtprocessargs(argc, argv) < 0) return -1; 53 int rc = qtprocessargs(argc, argv);
54 if (rc <= 0) return rc;
54 return qtrun(&qtproto_raw); 55 return qtrun(&qtproto_raw);
55 } 56 }
56 #endif 57 #endif