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 /conf | |
parent | e348ef01b433e06888310c1098a05291034a856c (diff) |
unsigned [int] -> uint
Diffstat (limited to 'conf')
-rw-r--r-- | conf/conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/conf.h b/conf/conf.h index 6ab53e25..515efbb3 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -100,7 +100,7 @@ void cfg_copy_list(list *dest, list *src, unsigned node_size); /* Lexer */ -extern int (*cf_read_hook)(byte *buf, unsigned int max, int fd); +extern int (*cf_read_hook)(byte *buf, uint max, int fd); struct symbol { struct symbol *next; |