Fix a missing break statement. - sam - An updated version of the sam text edito… | |
git clone git://vernunftzentrum.de/sam.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit c3cec98392f46739470f34f6f74bcf1b24a84532 | |
parent 7fe90573b44dd33db678d2f45ac5a2c6626d6c9d | |
Author: Rob King <[email protected]> | |
Date: Fri, 17 Jun 2016 09:53:43 -0500 | |
Fix a missing break statement. | |
Credit for this fix goes to Tommy Pettersson. | |
Diffstat: | |
sam/sam.c | 1 + | |
1 file changed, 1 insertion(+), 0 deletions(-) | |
--- | |
diff --git a/sam/sam.c b/sam/sam.c | |
@@ -77,6 +77,7 @@ main(int argc, char *argv[]) | |
case 's': | |
rsamname = optarg; | |
+ break; | |
default: | |
usage(); |