Ignore:
Timestamp:
Nov 8, 2005 11:31:55 AM (18 years ago)
Author:
bennylp
Message:

Initial configuration for pjlib-util

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/main/pjlib/src/pjlib-test/file.c

    r18 r32  
    99#define INCLUDE_FILE_TIME_TEST  0 
    1010 
    11 static char buffer[11] = "Hello world"; 
     11static char buffer[11] = {'H', 'e', 'l', 'l', 'o', ' ', 
     12                          'W', 'o', 'r', 'l', 'd' }; 
    1213 
    1314int file_test(void) 
     
    113114        status = pj_file_read(fd, &readbuf[size], &read); 
    114115        if (status != PJ_SUCCESS) { 
    115             app_perror("...file_read() error", status); 
     116            PJ_LOG(3,("", "...error reading file after %d bytes (error follows)",  
     117                      size)); 
     118            app_perror("...error", status); 
    116119            return -110; 
    117120        } 
Note: See TracChangeset for help on using the changeset viewer.