diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-01-23 12:11:43 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-01-23 12:11:43 +0000 |
commit | 93fd2c0b9476ed275d6f9597097cf266a315f84c (patch) | |
tree | 4e27b451ac9167e03fd067d69e66e72f28e68bf2 | |
parent | ea7a5cc4b80665ac17f234cbb7c1d36b10c5f854 (diff) |
Fix warning about // style comment. Actually remove the comment
because it was pointless anyway.
-rw-r--r-- | axconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |