aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2016-04-06 13:05:28 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2016-04-06 13:05:28 -0700
commit9c18f8b5d6ce73344d0c11643839f0c7fc03b998 (patch)
tree98f1cfe02cf22070426d830730ccc55a00f3c707
parentb61bdc9acc1df765eec9b43e6f83846dfb8a70d0 (diff)
downloadsyslinux-9c18f8b5d6ce73344d0c11643839f0c7fc03b998.tar.gz
syslinux-9c18f8b5d6ce73344d0c11643839f0c7fc03b998.tar.xz
syslinux-9c18f8b5d6ce73344d0c11643839f0c7fc03b998.zip
pxe.c: fix stray line-end garbage
The previous commit had some unfortunate line-end garbage; remove. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-rw-r--r--core/fs/pxe/pxe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fs/pxe/pxe.c b/core/fs/pxe/pxe.c
index 21763395..761a1715 100644
--- a/core/fs/pxe/pxe.c
+++ b/core/fs/pxe/pxe.c
@@ -253,7 +253,7 @@ __export int url_set_ip(struct url_info *url)
url->ip = IPInfo.serverip;
if (!url->ip)
err = -ntohs(TFTP_NONETWORK);
- }make
+ }
return err;
}