Changeset 362 for trunk/src/sh_files.c


Ignore:
Timestamp:
Oct 19, 2011, 12:16:31 AM (13 years ago)
Author:
katerina
Message:

Fix for ticket #267 (Multiple compiler warnings with gcc 4.6.1).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_files.c

    r356 r362  
    7676static char * sh_files_C_dequote (char * s, size_t * length)
    7777{
    78   size_t i, j, len = *length;
     78  size_t i, len = *length;
    7979  int    flag = 0;
    8080  char  *p, *q, *po, *pend;
     
    9696  po = SH_ALLOC(len+1); *po = '\0'; p = po; pend = &po[len];
    9797
    98   i = 0; j = 0; q = s;
     98  i = 0; q = s;
    9999
    100100  do
Note: See TracChangeset for help on using the changeset viewer.