Ignore:
Timestamp:
Jun 1, 2008 11:42:03 PM (5 years ago)
Author:
dkg
Message:

xdotool: reverting to upstream sources -- changes do not appear needed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xdotool/xdotool.c

    r1079 r1080  
    125125void cmd_help(int argc, char **args) { 
    126126  int i; 
    127  
    128   /* touch to clean up warnings (we want the parameters to stick 
    129      around because of the use of function pointers) */ 
    130   argc = 0; 
    131   args = NULL; 
    132    
    133127  printf("Available commands:\n"); 
    134128  for (i = 0; dispatch[i].name != NULL; i++) 
     
    173167 
    174168void cmd_mousedown(int argc, char **args) { 
    175   uint button; 
     169  int button; 
    176170  char *cmd = *args; argc--; args++; 
    177171 
     
    190184 
    191185void cmd_mouseup(int argc, char **args) { 
    192   uint button; 
     186  int button; 
    193187  char *cmd = *args; argc--; args++; 
    194188 
     
    237231    return; 
    238232  } 
     233 
     234  int (*func)(xdo_t *, char *) = NULL; 
    239235 
    240236  if (!strcmp(cmd, "key")) { 
Note: See TracChangeset for help on using the changeset viewer.