diff options
| author | Mark Murray <markm@FreeBSD.org> | 2000-08-19 11:45:18 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2000-08-19 11:45:18 +0000 |
| commit | 5f5780887efa696b1e5204d4e2d1788228910f1f (patch) | |
| tree | d29a5e3f7f16c9dcf03af70f542117de41e9bf87 /gnu | |
| parent | ac1140b8d5de8d8e3a62aaf337b62d9e8adf876a (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/dialog/dialog.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/usr.bin/dialog/dialog.c b/gnu/usr.bin/dialog/dialog.c index e99b2aedd2528..f9044e81de773 100644 --- a/gnu/usr.bin/dialog/dialog.c +++ b/gnu/usr.bin/dialog/dialog.c @@ -17,6 +17,8 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * + * $FreeBSD$ + * * * HISTORY: * @@ -87,9 +89,9 @@ #include <sys/wait.h> #include <dialog.h> -void Usage(unsigned char *name); +void Usage(char *name); -int main(int argc, unsigned char *argv[]) +int main(int argc, char *argv[]) { int offset = 0, clear_screen = 0, end_common_opts = 0, retval; unsigned char *title = NULL; @@ -367,9 +369,9 @@ int main(int argc, unsigned char *argv[]) exit(-1); } init_dialog(); - retval = dialog_tree(argv+offset+7, argc-offset-7, *argv[offset+2], - title, argv[offset+3], atoi(argv[offset+4]), atoi(argv[offset+5]), - atoi(argv[offset+6]), &tresult); + retval = dialog_tree((unsigned char **)argv+offset+7, argc-offset-7, + *argv[offset+2], title, argv[offset+3], atoi(argv[offset+4]), + atoi(argv[offset+5]), atoi(argv[offset+6]), &tresult); dialog_update(); if (!retval) @@ -390,7 +392,7 @@ int main(int argc, unsigned char *argv[]) /* * Print program usage */ -void Usage(unsigned char *name) +void Usage(char *name) { fprintf(stderr, "\ \ndialog version 0.3, by Savio Lam (lam836@cs.cuhk.hk).\ |
