top: fix build failure

This commit is contained in:
Denis Vlasenko 2008-04-17 18:04:38 +00:00
parent 250aa5bb01
commit e96dcb4dcf
2 changed files with 6 additions and 6 deletions

View File

@ -97,11 +97,6 @@
"\n -s sender Sender IP address" \ "\n -s sender Sender IP address" \
"\n target Target IP address" \ "\n target Target IP address" \
//#define ash_trivial_usage \
// "[FILE]...\n" \
// "or: ash -c command [args]..."
//#define ash_full_usage "\n\n" \
// "The ash shell"
#define sh_trivial_usage NOUSAGE_STR #define sh_trivial_usage NOUSAGE_STR
#define sh_full_usage "" #define sh_full_usage ""
#define ash_trivial_usage NOUSAGE_STR #define ash_trivial_usage NOUSAGE_STR

View File

@ -861,17 +861,22 @@ int top_main(int argc ATTRIBUTE_UNUSED, char **argv)
#else #else
qsort(top, ntop, sizeof(top_status_t), (void*)(sort_function[0])); qsort(top, ntop, sizeof(top_status_t), (void*)(sort_function[0]));
#endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */ #endif /* FEATURE_TOP_CPU_USAGE_PERCENTAGE */
} else { /* TOPMEM */ }
#if ENABLE_FEATURE_TOPMEM
else { /* TOPMEM */
qsort(topmem, ntop, sizeof(topmem_status_t), (void*)topmem_sort); qsort(topmem, ntop, sizeof(topmem_status_t), (void*)topmem_sort);
} }
#endif
count = lines; count = lines;
if (OPT_BATCH_MODE || count > ntop) { if (OPT_BATCH_MODE || count > ntop) {
count = ntop; count = ntop;
} }
if (scan_mask == TOP_MASK) if (scan_mask == TOP_MASK)
display_process_list(count, col); display_process_list(count, col);
#if ENABLE_FEATURE_TOPMEM
else else
display_topmem_process_list(count, col); display_topmem_process_list(count, col);
#endif
clearmems(); clearmems();
if (iterations >= 0 && !--iterations) if (iterations >= 0 && !--iterations)
break; break;