Changeset 501a8ba in mainline


Ignore:
Timestamp:
2006-06-16T21:20:51Z (18 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d3cd9774
Parents:
153a209
Message:

Some other warnings removed.

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    r153a209 r501a8ba  
    218218        keyfield_t *field;
    219219        style_t *style;
    220         char c;
    221220
    222221        if (newcons == active_console)
     
    310309                        if (newcon != -1)
    311310                                change_console(newcon);
     311                        retval = 0;
    312312                        break;
    313313                case KBD_MS_MOVE:
    314314                        gcons_mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
     315                        retval = 0;
    315316                        break;
    316317                case KBD_PUSHCHAR:
     
    338339                        }
    339340                       
    340                         /*FIXME: else store key to its buffer */
    341341                        keybuffer_push(&conn->keybuffer, c);
     342                        retval = 0;
    342343                       
    343344                        break;
     
    457458{
    458459        ipcarg_t phonehash;
    459         int kbd_phone, fb_phone;
    460         ipcarg_t retval, arg1 = 0xdead, arg2 = 0xbeef;
     460        int kbd_phone;
    461461        int i;
    462462
  • console/gcons.c

    r153a209 r501a8ba  
    7070static int console_vp;
    7171static int cstatus_vp[CONSOLE_COUNT];
    72 static int cstat_row, cstat_col; /* Size of cstatus buttons */
    7372static enum butstate console_state[CONSOLE_COUNT];
    7473
     
    346345{
    347346        int i;
    348         size_t hsize = (size_t)&_binary_helenos_ppm_size;
    349347
    350348        if (!use_gcons)
  • ipcc/ipcc.c

    r153a209 r501a8ba  
    108108static void do_answer_msg(void)
    109109{
    110         int i,cnt, errn;
    111         char c;
    112         ipc_callid_t callid;
     110        int i,cnt, errn = 0;
     111        char c;
    113112
    114113        cnt = 0;
  • klog/klog.c

    r153a209 r501a8ba  
    4545static char *klog;
    4646
    47 void interrupt_received(ipc_callid_t callid, ipc_call_t *call)
     47static void interrupt_received(ipc_callid_t callid, ipc_call_t *call)
    4848{
    4949        int i;
  • pci/pci.c

    r153a209 r501a8ba  
    6464                ipc_call_t call;
    6565                ipc_callid_t callid;
    66                 int retval;
    6766
    6867                callid = ipc_wait_for_call(&call);
  • tetris/input.c

    r153a209 r501a8ba  
    109109        } else
    110110                s = NULL;
    111 again:
     111
    112112        if (!lastchar) {
    113113                if (!getchar_inprog)
     
    143143{
    144144        struct timeval tv;
    145         char c;
    146145
    147146        tv.tv_sec = 0;
  • tetris/screen.c

    r153a209 r501a8ba  
    6262static int curscore;
    6363static int isset;               /* true => terminal is in game mode */
    64 static void (*tstp)(int);
    65 
    66 static void     scr_stop(int);
    67 static void     stopset(int);
    68 
    69 static char
    70         *CEstr;                 /* clear to end of line */
    7164
    7265
     
    147140{
    148141        return async_req_2(con_phone, CONSOLE_GETSIZE, 0, 0, &ws->ws_row, &ws->ws_col);
    149 }
    150 
    151 static void
    152 scr_stop(int sig)
    153 {
    154 
    155         scr_end();
    156         scr_set();
    157         scr_msg(key_msg, 1);
    158142}
    159143
  • tetris/tetris.c

    r153a209 r501a8ba  
    164164        gettimeofday(&tv, NULL);
    165165        srandom(tv.tv_sec + tv.tv_usec / 100000);
    166 }
    167 
    168 static void tetris_scores(int firstgame)
    169 {
    170166}
    171167
     
    260256        int level = 2;
    261257        char key_write[6][10];
    262         const char *errstr;
    263         int ch, i, j;
     258        int i, j;
    264259
    265260        keys = "jkl pq";
     
    451446*/
    452447        scr_end();
    453         exit(0);
     448
     449        return 0;
    454450}
    455451
Note: See TracChangeset for help on using the changeset viewer.