Changeset 864 for trunk/apps/txt2las.c

Show
Ignore:
Timestamp:
08/22/08 12:04:18 (5 months ago)
Author:
mloskot
Message:

Fixed signed/unsigned conversion in txt2las.c

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/apps/txt2las.c

    r821 r864  
    480480    if (file_name_out == NULL && file_name_in != NULL) 
    481481    { 
    482         int len = strlen(file_name_in); 
     482        int len = (int)strlen(file_name_in); 
    483483        file_name_out = strdup(file_name_in); 
    484484