]> granicus.if.org Git - procps-ng/commitdiff
redhat analysis: ps/display
authorJim Warner <james.warner@comcast.net>
Thu, 6 Oct 2011 16:05:39 +0000 (11:05 -0500)
committerSami Kerola <kerolasa@iki.fi>
Sat, 15 Oct 2011 06:26:28 +0000 (08:26 +0200)
ps/display.c

index 0c5e67538140652932befdf12e7a3f8542f5c6a1..74d1119be4935ea522361c33d323439e98c04136 100644 (file)
@@ -379,7 +379,7 @@ static void prep_forest_sort(void){
 
   if(!sort_list) {     /* assume start time order */
     incoming = search_format_array("start_time");
-    if(!incoming) fprintf(stderr, "Could not find start_time!\n");
+    if(!incoming) { fprintf(stderr, "Could not find start_time!\n"); exit(1); }
     tmp_list = malloc(sizeof(sort_node));
     tmp_list->reverse = 0;
     tmp_list->typecode = '?'; /* what was this for? */
@@ -390,7 +390,7 @@ static void prep_forest_sort(void){
   }
   /* this is required for the forest option */
   incoming = search_format_array("ppid");
-  if(!incoming) fprintf(stderr, "Could not find ppid!\n");
+  if(!incoming) { fprintf(stderr, "Could not find ppid!\n"); exit(1); }
   tmp_list = malloc(sizeof(sort_node));
   tmp_list->reverse = 0;
   tmp_list->typecode = '?'; /* what was this for? */