Ignore:
File:
1 edited

Legend:

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

    r28be7fa ra000878c  
    6262static bool mount_root(const char *fstype)
    6363{
    64         char *opts = "";
     64        const char *opts = "";
    6565        const char *root_dev = "bd/initrd";
    6666       
     
    117117}
    118118
    119 static void spawn(char *fname)
    120 {
    121         char *argv[2];
     119static void spawn(const char *fname)
     120{
     121        const char *argv[2];
    122122        struct stat s;
    123123       
     
    134134}
    135135
    136 static void srv_start(char *fname)
    137 {
    138         char *argv[2];
     136static void srv_start(const char *fname)
     137{
     138        const char *argv[2];
    139139        task_id_t id;
    140140        task_exit_t texit;
     
    168168}
    169169
    170 static void console(char *dev)
    171 {
    172         char *argv[3];
     170static void console(const char *dev)
     171{
     172        const char *argv[3];
    173173        char hid_in[DEVMAP_NAME_MAXLEN];
    174174        int rc;
     
    193193}
    194194
    195 static void getterm(char *dev, char *app)
    196 {
    197         char *argv[4];
     195static void getterm(const char *dev, const char *app)
     196{
     197        const char *argv[4];
    198198        char term[DEVMAP_NAME_MAXLEN];
    199199        int rc;
Note: See TracChangeset for help on using the changeset viewer.