diff options
author | Omar Polo <op@omarpolo.com> | 2023-06-11 11:31:22 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-06-11 11:31:22 +0000 |
commit | b8d68fc8e49b3eeac2ba3106e9694ef463a646e1 (patch) | |
tree | e3dace75ff4ba9c65e28678be0ea20b5dcc48e79 /crypto.c | |
parent | d1739e3f03a014fa9baded61a49eeb49293c751f (diff) |
fixes for -Wpointer-sign
Diffstat (limited to 'crypto.c')
-rw-r--r-- | crypto.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -122,7 +122,8 @@ crypto_dispatch_server(int fd, struct privsep_proc *p, struct imsg *imsg) const void *from; unsigned char *to; size_t datalen; - int n, len, ret; + int n, ret; + unsigned int len; datalen = IMSG_DATA_SIZE(imsg); |