diff options
author | William Hubbs <williamh@gentoo.org> | 2011-12-11 14:33:25 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2011-12-11 14:33:39 -0600 |
commit | e574b5d441564dfccdcd9b09ed538f7b05d678db (patch) | |
tree | c63bb5e6d5bd54e716458bcd01aa08732c730850 /src | |
parent | 5e01051c4eccf1fc52b32b060478a534d34769ed (diff) |
fix compile error
A variable used in the previous commit was actually removed in another
commit; that is why I didn't catch it.
Reported-by: Duncan < 1i5t5.duncan@cox.net>
X-Gentoo-Bug: 394369
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=394369
Diffstat (limited to 'src')
-rw-r--r-- | src/rc/runscript.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c index b460cc3c..cd53b349 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -1104,6 +1104,7 @@ runscript(int argc, char **argv) char *dir, *save = NULL, *saveLnk = NULL; char pidstr[10]; size_t l = 0, ll; + const char *file; struct stat stbuf; /* Show help if insufficient args */ |