diff options
author | Pavel TvrdĂk <pawel.tvrdik@gmail.cz> | 2015-05-19 08:53:34 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2015-06-08 02:24:08 +0200 |
commit | ae80a2de95d3d3c153ce20b90c9d8757d02cb33d (patch) | |
tree | be0c9427556557ff5b06b0250bc64ff33062199e /sysdep/unix/main.c | |
parent | e348ef01b433e06888310c1098a05291034a856c (diff) |
unsigned [int] -> uint
Diffstat (limited to 'sysdep/unix/main.c')
-rw-r--r-- | sysdep/unix/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index 05f7560d..e31471da 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -155,7 +155,7 @@ read_iproute_table(char *file, char *prefix, int max) static char *config_name = PATH_CONFIG_FILE; static int -cf_read(byte *dest, unsigned int len, int fd) +cf_read(byte *dest, uint len, int fd) { int l = read(fd, dest, len); if (l < 0) |