aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2012-06-29 16:23:36 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2012-06-29 16:23:36 -0700
commit59b77fcf04f4ddfe012c0f613eff1f873e6bd274 (patch)
tree3f7e7545917140a6cf73c2218bc0d8e7a35a6c99
parent911b2fd754c0364487c92a2282a77b6812d7823e (diff)
downloadsyslinux-59b77fcf04f4ddfe012c0f613eff1f873e6bd274.tar.gz
syslinux-59b77fcf04f4ddfe012c0f613eff1f873e6bd274.tar.xz
syslinux-59b77fcf04f4ddfe012c0f613eff1f873e6bd274.zip
linux.c32: add missing break;syslinux-4.06-pre10
Add missing break; for ENOMEM. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-rw-r--r--com32/modules/linux.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/com32/modules/linux.c b/com32/modules/linux.c
index a429537e..76443f91 100644
--- a/com32/modules/linux.c
+++ b/com32/modules/linux.c
@@ -281,6 +281,7 @@ bail:
break;
case ENOMEM:
fprintf(stderr, "Out of memory\n");
+ break;
default:
fprintf(stderr, "Error %d\n", errno);
break;