Fix missing ;;s in case statement.

mprof:
	Fix missing ;;s in case statement.
This commit is contained in:
Zoltan Somogyi
1995-10-09 01:48:21 +00:00
parent 6f0e83f0ab
commit 908661689f

View File

@@ -15,6 +15,6 @@
MPROF=${MERCURY_PROFILER="@LIBDIR@/bin/@FULLARCH@/mercury_profile"}
case $# in
0) exec $MPROF
*) exec $MPROF "$@"
0) exec $MPROF ;;
*) exec $MPROF "$@" ;;
esac