The result of getopt() is "int" and should be treated as such
This commit is contained in:
parent
bf181b9338
commit
47d4926244
@ -148,7 +148,7 @@ int date_main(int argc, char **argv)
|
|||||||
char *date_str = NULL;
|
char *date_str = NULL;
|
||||||
char *date_fmt = NULL;
|
char *date_fmt = NULL;
|
||||||
char *t_buff;
|
char *t_buff;
|
||||||
char c;
|
int c;
|
||||||
int set_time = 0;
|
int set_time = 0;
|
||||||
int rfc822 = 0;
|
int rfc822 = 0;
|
||||||
int utc = 0;
|
int utc = 0;
|
||||||
|
@ -126,7 +126,7 @@ static long du(char *filename)
|
|||||||
int du_main(int argc, char **argv)
|
int du_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char c;
|
int c;
|
||||||
|
|
||||||
/* default behaviour */
|
/* default behaviour */
|
||||||
print = print_normal;
|
print = print_normal;
|
||||||
@ -163,7 +163,7 @@ int du_main(int argc, char **argv)
|
|||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* $Id: du.c,v 1.23 2000/07/16 20:57:15 kraai Exp $ */
|
/* $Id: du.c,v 1.24 2000/07/17 16:17:19 proski Exp $ */
|
||||||
/*
|
/*
|
||||||
Local Variables:
|
Local Variables:
|
||||||
c-file-style: "linux"
|
c-file-style: "linux"
|
||||||
|
@ -30,7 +30,7 @@ echo_main(int argc, char** argv)
|
|||||||
{
|
{
|
||||||
register char **ap;
|
register char **ap;
|
||||||
char *p;
|
char *p;
|
||||||
register char c;
|
int c;
|
||||||
int nflag = 0;
|
int nflag = 0;
|
||||||
int eflag = 0;
|
int eflag = 0;
|
||||||
|
|
||||||
|
2
date.c
2
date.c
@ -148,7 +148,7 @@ int date_main(int argc, char **argv)
|
|||||||
char *date_str = NULL;
|
char *date_str = NULL;
|
||||||
char *date_fmt = NULL;
|
char *date_fmt = NULL;
|
||||||
char *t_buff;
|
char *t_buff;
|
||||||
char c;
|
int c;
|
||||||
int set_time = 0;
|
int set_time = 0;
|
||||||
int rfc822 = 0;
|
int rfc822 = 0;
|
||||||
int utc = 0;
|
int utc = 0;
|
||||||
|
3
dmesg.c
3
dmesg.c
@ -34,7 +34,8 @@ static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
|
|||||||
|
|
||||||
int dmesg_main(int argc, char **argv)
|
int dmesg_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
char *buf, c;
|
char *buf;
|
||||||
|
int c;
|
||||||
int bufsize = 8196;
|
int bufsize = 8196;
|
||||||
int i;
|
int i;
|
||||||
int n;
|
int n;
|
||||||
|
4
du.c
4
du.c
@ -126,7 +126,7 @@ static long du(char *filename)
|
|||||||
int du_main(int argc, char **argv)
|
int du_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char c;
|
int c;
|
||||||
|
|
||||||
/* default behaviour */
|
/* default behaviour */
|
||||||
print = print_normal;
|
print = print_normal;
|
||||||
@ -163,7 +163,7 @@ int du_main(int argc, char **argv)
|
|||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* $Id: du.c,v 1.23 2000/07/16 20:57:15 kraai Exp $ */
|
/* $Id: du.c,v 1.24 2000/07/17 16:17:19 proski Exp $ */
|
||||||
/*
|
/*
|
||||||
Local Variables:
|
Local Variables:
|
||||||
c-file-style: "linux"
|
c-file-style: "linux"
|
||||||
|
2
echo.c
2
echo.c
@ -30,7 +30,7 @@ echo_main(int argc, char** argv)
|
|||||||
{
|
{
|
||||||
register char **ap;
|
register char **ap;
|
||||||
char *p;
|
char *p;
|
||||||
register char c;
|
int c;
|
||||||
int nflag = 0;
|
int nflag = 0;
|
||||||
int eflag = 0;
|
int eflag = 0;
|
||||||
|
|
||||||
|
@ -34,7 +34,8 @@ static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
|
|||||||
|
|
||||||
int dmesg_main(int argc, char **argv)
|
int dmesg_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
char *buf, c;
|
char *buf;
|
||||||
|
int c;
|
||||||
int bufsize = 8196;
|
int bufsize = 8196;
|
||||||
int i;
|
int i;
|
||||||
int n;
|
int n;
|
||||||
|
Loading…
Reference in New Issue
Block a user