diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-10 10:00:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:08 -0500 |
commit | 9adf2883efc275b359d8e50c493023c48883eef6 (patch) | |
tree | feb7808b357720d0fd535d46df45a2b43c4d2613 /source4/lib/replace | |
parent | 3cc41b70daac63fc07756d73e8fd8e89450882c4 (diff) | |
download | samba-9adf2883efc275b359d8e50c493023c48883eef6.tar.gz samba-9adf2883efc275b359d8e50c493023c48883eef6.tar.bz2 samba-9adf2883efc275b359d8e50c493023c48883eef6.zip |
r18321: fixed some warnings on AIX
(This used to be commit 449fab2c264aa50601f9a2d3310f1910ba97706b)
Diffstat (limited to 'source4/lib/replace')
-rw-r--r-- | source4/lib/replace/snprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/replace/snprintf.c b/source4/lib/replace/snprintf.c index c06e8d76a3..1ff3c1e324 100644 --- a/source4/lib/replace/snprintf.c +++ b/source4/lib/replace/snprintf.c @@ -914,7 +914,7 @@ static LLONG ROUND(LDOUBLE value) static double my_modf(double x0, double *iptr) { int i; - LLONG l; + LLONG l=0; double x = x0; double f = 1.0; |