diff options
author | fergus.henderson <fergus.henderson@01de4be4-8c4a-0410-9132-4925637da917> | 2011-10-21 01:26:37 +0000 |
---|---|---|
committer | fergus.henderson <fergus.henderson@01de4be4-8c4a-0410-9132-4925637da917> | 2011-10-21 01:26:37 +0000 |
commit | f4aa4a048627aecd54bfb0ed05dc0c6d3110b38d (patch) | |
tree | 99adbb04bfcf2d388551c6d1850901dcc14268b7 /src/dotd.c | |
parent | 2a2e30abc22ea32985ee0ea055f0eafc195c777a (diff) | |
download | distcc-f4aa4a048627aecd54bfb0ed05dc0c6d3110b38d.tar.gz |
Fix a couple of compiler warnings.
Reviewed by Craig Silverstein.
git-svn-id: http://distcc.googlecode.com/svn/trunk@743 01de4be4-8c4a-0410-9132-4925637da917
Diffstat (limited to 'src/dotd.c')
-rw-r--r-- | src/dotd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ int dcc_cleanup_dotd(const char *dotd_fname, } tmp_dotd = fopen(*new_dotd_fname, "w"); - if ((tmp_dotd == NULL)) { + if (tmp_dotd == NULL) { fclose(dotd); return 1; } |