1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Fix reporting of cache size in the resource dialog

The longlong bigval was never used. Reported by zas.
This commit is contained in:
Jonas Fonseca 2005-12-04 20:13:26 +01:00 committed by Jonas Fonseca
parent 53f756719a
commit cfb347bf45

View File

@ -202,7 +202,7 @@ get_resource_info(struct terminal *term, void *data)
/* What about just using Kibi/Mebi representation here? --jonas */ /* What about just using Kibi/Mebi representation here? --jonas */
bigval = get_cache_size(); bigval = get_cache_size();
val_add(n_("%ld byte", "%ld bytes", val, term)); val_add(n_("%ld byte", "%ld bytes", bigval, term));
add_to_string(&info, ", "); add_to_string(&info, ", ");
val = get_cache_entry_count(); val = get_cache_entry_count();