diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2012-01-05 00:46:55 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2012-01-05 00:46:55 +0100 |
commit | 2edfe21d03f0335dac09f71a6269a79688785d4c (patch) | |
tree | 8eec780d3249ed69c8ffd5717526778bc3b52d00 /src/conf-parser.c | |
parent | b8079ae19b41c9b61850c796dddc601b826850e0 (diff) |
conf-parser: silence compiler warning
Diffstat (limited to 'src/conf-parser.c')
-rw-r--r-- | src/conf-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf-parser.c b/src/conf-parser.c index b60f93d7a4..3ccd1c067a 100644 --- a/src/conf-parser.c +++ b/src/conf-parser.c @@ -763,7 +763,7 @@ int config_parse_bytes( void *data, void *userdata) { - uint64_t *bytes = data; + off_t *bytes = data; assert(filename); assert(lvalue); |