diff options
Diffstat (limited to 'bash/bashrc.d/prompt.bash')
-rw-r--r-- | bash/bashrc.d/prompt.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc.d/prompt.bash b/bash/bashrc.d/prompt.bash index e437b9a5..307c577b 100644 --- a/bash/bashrc.d/prompt.bash +++ b/bash/bashrc.d/prompt.bash @@ -243,7 +243,7 @@ prompt() { # Show return status of previous command in angle brackets, if not zero ret) if ((PROMPT_RETURN > 0)) ; then - printf '<%d>' "$PROMPT_RETURN" + printf '<%u>' "$PROMPT_RETURN" fi ;; |