diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-23 09:23:09 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-23 09:23:09 +0000 |
commit | 37070dc1a6d6e28d3859620b03ba3278a08b2354 (patch) | |
tree | b4f09d11317ae961eb4d9b41ce5ed3f714e780be /usr.bin | |
parent | a5a70700d5fc922963561f915eb7640493e70d9f (diff) |
Fix function type arguments.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/less/option.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/less/option.h b/usr.bin/less/option.h index 18aaf71da3c..c54481ae914 100644 --- a/usr.bin/less/option.h +++ b/usr.bin/less/option.h @@ -60,6 +60,6 @@ struct loption { int otype; /* Type of the option */ int odefault; /* Default value */ int *ovar; /* Pointer to the associated variable */ - void (*ofunc)(); /* Pointer to special handling function */ + void (*ofunc)(int, char *); /* Pointer to special handling function */ char *odesc[3]; /* Description of each value */ }; |