summaryrefslogtreecommitdiff
path: root/daemons
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2015-12-29 18:02:22 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2015-12-29 20:47:40 +0100
commita718b0bfcce0d6426d3354815c957ce9dbb1ca21 (patch)
tree8d4bb4addc5237f66ea0b2f31f117e5f9885de79 /daemons
parentcc3e97aa0141410eb8b05cab34aecf65f44a164c (diff)
fix compiler warnings in hurd/daemons
daemons: Fix compiler warnings. * daemons/lmail.c: Initialize cached to 0.
Diffstat (limited to 'daemons')
-rw-r--r--daemons/lmail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/lmail.c b/daemons/lmail.c
index 963f5dcd..33ccf66b 100644
--- a/daemons/lmail.c
+++ b/daemons/lmail.c
@@ -510,7 +510,7 @@ main (int argc, char **argv)
else
/* Multiple recipients. */
{
- int cached; /* Temporary processed input file. */
+ int cached = 0; /* Temporary processed input file. */
ex = cache (in, file ?: "-", &params, &cached);
if (! ex)