Merge "Use a named constant rather than a magic number." into jb-mr1-dev

This commit is contained in:
Elliott Hughes 2012-09-17 12:11:24 -07:00 committed by Android (Google) Code Review
commit c8cff90d49
1 changed files with 2 additions and 1 deletions

View File

@ -109,7 +109,8 @@ out_close:
void do_dmesg() {
printf("------ KERNEL LOG (dmesg) ------\n");
int size = klogctl(10, NULL, 0); /* Get size of kernel buffer */
/* Get size of kernel buffer */
int size = klogctl(KLOG_SIZE_BUFFER, NULL, 0);
if (size <= 0) {
printf("Unexpected klogctl return value: %d\n\n", size);
return;