Skip to content
Snippets Groups Projects
Commit 30e4f126 authored by dprice's avatar dprice
Browse files

* verify.c: #include <getopt.h>.

(verify): Use declared int type for getopt return - char may be
unsigned on some systems.
parent 1c8060d4
No related branches found
No related tags found
No related merge requests found
2006-03-24 Derek Price <derek@ximbiot.com> 2006-03-24 Derek Price <derek@ximbiot.com>
   
* verify.c (verify_usage): Correct usage. * verify.c: #include <getopt.h>.
(verify_usage): Correct usage.
(verify): Use declared int type for getopt return - char may be
unsigned on some systems.
   
2006-03-13 Derek Price <derek@ximbiot.com> 2006-03-13 Derek Price <derek@ximbiot.com>
   
......
...@@ -29,6 +29,9 @@ ...@@ -29,6 +29,9 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
/* POSIX.2 headers. */
#include <getopt.h>
/* GNULIB headers. */ /* GNULIB headers. */
#include "error.h" #include "error.h"
#include "wait.h" #include "wait.h"
...@@ -637,7 +640,7 @@ int ...@@ -637,7 +640,7 @@ int
verify (int argc, char **argv) verify (int argc, char **argv)
{ {
bool local = false; bool local = false;
char c; int c;
int err; int err;
struct verify_closure userargs; struct verify_closure userargs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment