diff options
author | Matthias Dienstbier <mdienstbier@googlemail.com> | 2010-03-10 21:27:42 +0100 |
---|---|---|
committer | Matthias Dienstbier <mdienstbier@googlemail.com> | 2010-03-10 21:27:42 +0100 |
commit | 1cccebbbae9e8ada2fe5e21d2e3bc32b9d6bce4a (patch) | |
tree | 231e929dbabd0e49e9b5828b6f93c0d274ba277f /src/core | |
parent | 7eeddbe6301fb3979a55f1e74a0a0e16ec566df4 (diff) |
remove useless return
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/libs/lib-ui.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/libs/lib-ui.sh b/src/core/libs/lib-ui.sh index 5844eab..a410569 100644 --- a/src/core/libs/lib-ui.sh +++ b/src/core/libs/lib-ui.sh @@ -49,7 +49,6 @@ show_warning () debug 'UI' "show_warning '$1': $2 ($type)" [ `type -t _${var_UI_TYPE}_show_warning` == function ] || die_error "_${var_UI_TYPE}_show_warning is not a function" _${var_UI_TYPE}_show_warning "$1" "$2" $type - return 0 } |