Show
Ignore:
Timestamp:
05/05/08 15:00:01 (7 months ago)
Author:
ludovic.rousseau
Message:

Use size_t instead of int when needed, plus some other minor changes

Patch bug.1 included in Ticket #176

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/tools/piv-tool.c

    r3405 r3510  
    122122                der = malloc(derlen); 
    123123                if (der == NULL) { 
    124                         printf("file %s is too big, %d\n", cert_file, derlen); 
     124                        printf("file %s is too big, %lu\n", 
     125                                cert_file, (unsigned long)derlen); 
    125126                        return-1 ; 
    126127                }