library: eliminate those warnings for '-Wpointer-sign'

Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
Jim Warner
2022-01-02 00:00:09 -06:00
committed by Craig Small
parent afdd4690fc
commit 915b07f4ff
2 changed files with 6 additions and 6 deletions

View File

@@ -26,8 +26,8 @@
#define ESC_BRACKETS 0x2 // if using cmd, put '[' and ']' around it
#define ESC_DEFUNCT 0x4 // mark zombies with " <defunct>"
int escape_command (unsigned char *outbuf, const proc_t *pp, int bytes, unsigned flags);
int escape_command (char *outbuf, const proc_t *pp, int bytes, unsigned flags);
int escape_str (unsigned char *dst, const unsigned char *src, int bufsize);
int escape_str (char *dst, const char *src, int bufsize);
#endif