diff options
author | Brad Hards <bradh@frogmouth.net> | 2011-03-08 20:28:10 +1100 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-03-16 14:44:50 +1030 |
commit | edede43eef40cc154054d643eccd2b987b03e4b1 (patch) | |
tree | 48d11241286024f00de2a14e59e00548d3497a28 | |
parent | 48e8d58600289a6fccc6f9763cb24007789ffd8e (diff) |
ciniparser: avoid dead store to sta
This is always overwritten later in the function.
-rw-r--r-- | ccan/ciniparser/ciniparser.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ccan/ciniparser/ciniparser.c b/ccan/ciniparser/ciniparser.c index a921409c..d28c1581 100644 --- a/ccan/ciniparser/ciniparser.c +++ b/ccan/ciniparser/ciniparser.c @@ -128,7 +128,6 @@ line_status ciniparser_line(char *input_line, char *section, strcpy(line, strstrip(input_line)); len = (int) strlen(line); - sta = LINE_UNPROCESSED; if (len < 1) { /* Empty line */ sta = LINE_EMPTY; |