summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-01-23 12:11:43 +0000
committerRalf Baechle <ralf@linux-mips.org>2007-01-23 12:11:43 +0000
commit93fd2c0b9476ed275d6f9597097cf266a315f84c (patch)
tree4e27b451ac9167e03fd067d69e66e72f28e68bf2
parentea7a5cc4b80665ac17f234cbb7c1d36b10c5f854 (diff)
Fix warning about // style comment. Actually remove the comment
because it was pointless anyway.
-rw-r--r--axconfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/axconfig.c b/axconfig.c
index 8a2f8b2..396c780 100644
--- a/axconfig.c
+++ b/axconfig.c
@@ -283,12 +283,12 @@ static char *proc_get_iface_name(char *line) {
char *p;
if (!(p = strchr(line, ':')))
- return 0; // should never hapen
+ return 0;
*p = 0;
while (*line && isspace(*line & 0xff))
line++;
if (!*line)
- return 0; // should never hapen
+ return 0;
return line;
}
#endif