From b499bf60c77a9669a03d080dd8e0ddd8ae6991c4 Mon Sep 17 00:00:00 2001 From: Ahreum Jeong Date: Mon, 29 May 2017 15:51:40 +0900 Subject: [PATCH] Add \t' to system info message for readability --- apps/system/sysinfo/sysinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.7.4