Commit 69f45263 authored by Stefan Reif's avatar Stefan Reif Committed by Greg Kroah-Hartman

staging: usbip: userspace: libsrc: replace numbers by ascii

replace numbers in code by ascii text constants as suggested
by Dan Carpenter:
http://driverdev.linuxdriverproject.org/pipermail/devel/2013-February/035907.htmlSigned-off-by: default avatarStefan Reif <ke42caxa@cip.cs.fau.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 986d7584
...@@ -491,10 +491,10 @@ static void parse(FILE *f) ...@@ -491,10 +491,10 @@ static void parse(FILE *f)
while (fgets(buf, sizeof(buf), f)) { while (fgets(buf, sizeof(buf), f)) {
linectr++; linectr++;
/* remove line ends */ /* remove line ends */
cp = strchr(buf, 13); cp = strchr(buf, '\r');
if (cp) if (cp)
*cp = 0; *cp = 0;
cp = strchr(buf, 10); cp = strchr(buf, '\n');
if (cp) if (cp)
*cp = 0; *cp = 0;
if (buf[0] == '#' || !buf[0]) if (buf[0] == '#' || !buf[0])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment