Fix completion describtion bug causing filesizes below 1024 bytes to be reported as 0 bytes on big-endian systems

darcs-hash:20060322001712-ac50b-1a42b3dcb868161f13d45d80d16aeb119f6ec9cd.gz
This commit is contained in:
axel 2006-03-22 10:17:12 +10:00
parent 80b4055eab
commit 50fa7234ea

View File

@ -343,7 +343,7 @@ void get_desc( wchar_t *fn, string_buffer_t *sb, int is_cmd )
}
else if( sz < 1024 )
{
sb_printf( sb, L"%dB", sz );
sb_printf( sb, L"%lldB", sz );
}
else
{