Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/killall/killall.c

    r5a6cc679 ra35b458  
    4040#include <str_error.h>
    4141#include <stdlib.h>
     42#include <str.h>
    4243
    4344#define NAME  "killall"
     
    5455                return 1;
    5556        }
    56        
     57
    5758        size_t count;
    5859        stats_task_t *stats_tasks = stats_get_tasks(&count);
    59        
     60
    6061        if (stats_tasks == NULL) {
    6162                fprintf(stderr, "%s: Unable to get tasks\n", NAME);
    6263                return 2;
    6364        }
    64        
     65
    6566        size_t i;
    6667        for (i = 0; i < count; i++) {
     
    7576                }
    7677        }
    77        
     78
    7879        free(stats_tasks);
    79        
     80
    8081        return 0;
    8182}
Note: See TracChangeset for help on using the changeset viewer.