mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-09 19:02:18 +00:00
Fix missing ;;s in case statement.
mprof: Fix missing ;;s in case statement.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user