Ignore:
Timestamp:
2005-04-07T17:18:18+12:00 (19 years ago)
Author:
kjdon
Message:

added some x++ -> ++x changes submitted by Emanuel Dejanu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/w32server/locate.cpp

    r4642 r9598  
    6868    send = strrchr(here,'\\');
    6969    if (send != NULL) {
    70       send++;
     70      ++send;
    7171    } else {
    7272      send = strchr(here,':');
    7373      if (send != NULL) {
    74         send++;
     74        ++send;
    7575      } else {
    7676        send = here;
     
    130130  for (e = console_buffer;;) {
    131131    b = e;
    132     while (*e >= ' ') e++;
     132    while (*e >= ' ') ++e;
    133133    TextOut(dc,0,loc,b,e-b);
    134134    loc += line_spacing;
    135135    if (*e == 0) break;
    136     e++;
     136    ++e;
    137137    if (*e == 0) break;
    138138    }
     
    157157  char *bin, *bout;
    158158  bin = bout = console_buffer;
    159   while (*bin >= ' ') bin++;
     159  while (*bin >= ' ') ++bin;
    160160  if (*bin != 0) {
    161     bin++;
     161    ++bin;
    162162    if (*bin != 0) {
    163163      while (*bin != 0) *bout++ = *bin++;
     
    195195  if (*next_console != 0) {
    196196    last_console = next_console;
    197     next_console++;
     197    ++next_console;
    198198    *next_console = 0;
    199199    }
     
    207207      if (*bp == '\t') *bp = ' ';
    208208      if (*bp < ' ') break;
    209       bp++;
     209      ++bp;
    210210      }
    211211    if (*bp != 0) *bp = '\n';
     
    238238    while (len < n) {
    239239      fputc (msg[len], log_file);
    240       len++;
     240      ++len;
    241241    }
    242242    fflush(log_file);
Note: See TracChangeset for help on using the changeset viewer.