Add \t' to system info message for readability
authorAhreum Jeong <ahreum.jeong@samsung.com>
Mon, 29 May 2017 06:51:40 +0000 (15:51 +0900)
committerAhreum Jeong <ahreum.jeong@samsung.com>
Fri, 2 Jun 2017 07:07:22 +0000 (16:07 +0900)
apps/system/sysinfo/sysinfo.c

index bf4441d..5d4ee2e 100644 (file)
@@ -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");