# HG changeset patch
# User Mychaela Falconia <falcon@freecalypso.org>
# Date 1681958174 0
# Node ID 46a6e6b6841a7189e4583347e180041f790bc4f7
# Parent  0beafaa0623f9d7abc5cc6362fa5f36803f3ced4
gsmefr-{cod,dec}-parse: missed exit(0) at the end

diff -r 0beafaa0623f -r 46a6e6b6841a efrtest/cod-parse.c
--- a/efrtest/cod-parse.c	Thu Apr 20 02:23:35 2023 +0000
+++ b/efrtest/cod-parse.c	Thu Apr 20 02:36:14 2023 +0000
@@ -60,4 +60,5 @@
 			putchar('\n');
 		}
 	}
+	exit(0);
 }
diff -r 0beafaa0623f -r 46a6e6b6841a efrtest/dec-parse.c
--- a/efrtest/dec-parse.c	Thu Apr 20 02:23:35 2023 +0000
+++ b/efrtest/dec-parse.c	Thu Apr 20 02:36:14 2023 +0000
@@ -58,4 +58,5 @@
 			putchar('\n');
 		}
 	}
+	exit(0);
 }