From: Ahreum Jeong Date: Mon, 29 May 2017 06:51:40 +0000 (+0900) Subject: Add \t' to system info message for readability X-Git-Tag: 1.1_Public_Release~538^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b499bf60c77a9669a03d080dd8e0ddd8ae6991c4;p=rtos%2Ftinyara.git Add \t' to system info message for readability --- diff --git a/apps/system/sysinfo/sysinfo.c b/apps/system/sysinfo/sysinfo.c index bf4441d..5d4ee2e 100644 --- a/apps/system/sysinfo/sysinfo.c +++ b/apps/system/sysinfo/sysinfo.c @@ -93,7 +93,7 @@ void sysinfo(void) do { nread = read(fd, sysinfo_str, MAX_BUF_SIZE); sysinfo_str[nread] = '\0'; - printf("%s", sysinfo_str); + printf("\t%s", sysinfo_str); } while (nread == MAX_BUF_SIZE); close(fd); printf("\n");