summaryrefslogtreecommitdiff
path: root/libinstaller
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2010-06-09 18:27:53 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2010-06-09 18:27:53 -0700
commit862845aea785a1b7eb52b9e23850d113a2098310 (patch)
tree745465d62e3f637cc79aacee7c4e5545d241ec19 /libinstaller
parent598c4856c0080d44085dd58f39a76ad0816843cf (diff)
downloadsyslinux-862845aea785a1b7eb52b9e23850d113a2098310.tar.gz
syslxopt: add missing break;
Add missing break; in the command-line parser. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'libinstaller')
-rw-r--r--libinstaller/syslxopt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libinstaller/syslxopt.c b/libinstaller/syslxopt.c
index 5c172d4c..9fda16d0 100644
--- a/libinstaller/syslxopt.c
+++ b/libinstaller/syslxopt.c
@@ -175,6 +175,7 @@ void parse_options(int argc, char *argv[], enum syslinux_mode mode)
break;
case 'd':
opt.directory = optarg;
+ break;
case OPT_RESET_ADV:
opt.reset_adv = 1;
break;