fix statements

SVN revision: 43224
This commit is contained in:
Carsten Haitzler 2009-10-23 06:48:22 +00:00
parent ccec2fb8a4
commit 2168b2a57f
1 changed files with 5 additions and 5 deletions

View File

@ -29,11 +29,11 @@ evas_cserve_stats_get(Evas_Cserve_Stats *stats)
if (!evas_cserve_raw_stats_get(&st)) return 0;
if (!stats) return 1;
stats->saved_memory = st.saved_memory;
stats->wasted_memory - st.wasted_memory;
stats->saved_memory_peak - st.saved_memory_peak;
stats->wasted_memory_peak - st.wasted_memory_peak;
stats->saved_time_image_header_load - st.saved_time_image_header_load;
stats->saved_time_image_data_load - st.saved_time_image_data_load;
stats->wasted_memory = st.wasted_memory;
stats->saved_memory_peak = st.saved_memory_peak;
stats->wasted_memory_peak = st.wasted_memory_peak;
stats->saved_time_image_header_load = st.saved_time_image_header_load;
stats->saved_time_image_data_load = st.saved_time_image_data_load;
// may expand this in future
return 1;
#else