aboutsummaryrefslogtreecommitdiff
path: root/src/progman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/progman.c')
-rw-r--r--src/progman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/progman.c b/src/progman.c
index 411fc8c..5085f16 100644
--- a/src/progman.c
+++ b/src/progman.c
@@ -1519,12 +1519,12 @@ notify (const char *tag, int status, struct action *act)
mdef[COMPONENT_IDX].value = (char*) tag;
if (WIFEXITED (status))
{
- mdef[TERMINATION_IDX].value = _("exited with code");
+ mdef[TERMINATION_IDX].value = (char*) _("exited with code");
mdef[RETCODE_IDX].value = umaxtostr (WEXITSTATUS (status), buf);
}
else if (WIFSIGNALED (status))
{
- mdef[TERMINATION_IDX].value = _("terminated on signal");
+ mdef[TERMINATION_IDX].value = (char*) _("terminated on signal");
mdef[RETCODE_IDX].value = umaxtostr (WTERMSIG (status), buf);
}
else

Return to:

Send suggestions and report system problems to the System administrator.