Changeset 5a6f6c9e169db51f623f232b348c10a8e07b2453

Show
Ignore:
Timestamp:
09/01/07 17:42:30 (1 year ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1188661350 +0000
git-parent:

[bdf786c983885b18e9162fd01d245442a6c9ec06]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1188661350 +0000
Message:

Try to fix a compiler warning

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/extras/libc.c

    rcc3bd15 r5a6f6c9  
    118118{ 
    119119    const char *psz_end = memchr( psz, 0, n ); 
    120     return psz_end ? ( psz_end - psz ) : n; 
     120    return psz_end ? (size_t)( psz_end - psz ) : n; 
    121121} 
    122122#endif