diff options
author | Tim Potter <tpot@samba.org> | 2005-06-16 06:39:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:14 -0500 |
commit | 289845ff77d87ce6dd8bfc03f62432f3868049c2 (patch) | |
tree | ee90fa7a980137160e6e9eaacb989ca2eaf99613 | |
parent | bab977dad76e9204278c7afe0bb905cda064f488 (diff) | |
download | samba-289845ff77d87ce6dd8bfc03f62432f3868049c2.tar.gz samba-289845ff77d87ce6dd8bfc03f62432f3868049c2.tar.bz2 samba-289845ff77d87ce6dd8bfc03f62432f3868049c2.zip |
r7627: Fix warning in unused (?) function.
(This used to be commit a4d05988637b4e607c3cdad83bfb1e9cf923b7f0)
-rw-r--r-- | source4/lib/util_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/util_file.c b/source4/lib/util_file.c index 557baa716d..e02198754d 100644 --- a/source4/lib/util_file.c +++ b/source4/lib/util_file.c @@ -115,7 +115,7 @@ read a line from a file with possible \ continuation chars. Blanks at the start or end of a line are stripped. The string will be allocated if s2 is NULL ****************************************************************************/ -char *fgets_slash(char *s2,int maxlen,FILE *f) +char *fgets_slash(char *s2,int maxlen,XFILE *f) { char *s=s2; int len = 0; |