aboutsummaryrefslogtreecommitdiff
path: root/display_args.c
diff options
context:
space:
mode:
Diffstat (limited to 'display_args.c')
-rw-r--r--display_args.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/display_args.c b/display_args.c
index 08c735a..bd050e7 100644
--- a/display_args.c
+++ b/display_args.c
@@ -176,12 +176,10 @@ int display_value(enum tof type, struct process *proc,
switch (info->type) {
case ARGTYPE_VOID:
return 0;
- case ARGTYPE_IGNORE:
- return 0; /* Empty gap between commas */
case ARGTYPE_INT:
- return fprintf(output, "%d", (int) value);
+ return fprintf(output, "%d", (int) value);
case ARGTYPE_UINT:
- return fprintf(output, "%u", (unsigned) value);
+ return fprintf(output, "%u", (unsigned) value);
case ARGTYPE_LONG:
if (proc->mask_32bit)
return fprintf(output, "%d", (int) value);