Changeset 102f641 in mainline for uspace/app/sysctl/main.c


Ignore:
Timestamp:
2019-09-02T19:01:50Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
25697163
Parents:
241f1985
Message:

Correcting syntax according to ccheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sysctl/main.c

    r241f1985 r102f641  
    4141#include <fibril.h>
    4242
    43 
    4443#define NAME "sysctl"
    4544#define NAME_BUFFER 256
     
    4847        const char *name;
    4948        int args;
    50         int (* handler)(int, char **);
     49        int (*handler)(int, char **);
    5150} command_t;
    5251
     
    9190                printf("%-25s\t%s\n", name, unit_state(state));
    9291                continue;
    93 fail:
     92
     93        fail:
    9494                printf(" -- unit skipped due to IPC error (%s) --\n",
    9595                    str_error(rc));
     
    176176        }
    177177}
    178 
    179178
    180179int main(int argc, char *argv[])
Note: See TracChangeset for help on using the changeset viewer.