[Title] remove warning
authorgiwoong.kim <giwoong.kim@samsung.com>
Fri, 6 Apr 2012 12:45:41 +0000 (21:45 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Fri, 6 Apr 2012 16:33:26 +0000 (01:33 +0900)
[Type]
[Module]
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/src/emulator.c

index 095a90e..b74d684 100644 (file)
@@ -259,8 +259,8 @@ static void system_info(void)
     /* pci device description */
     INFO("* Pci devices :\n");
     strcat(lscmd, logpath);
-    system(lscmd);
-    INFO("\n");
+    int i = system(lscmd);
+    INFO("system function command : %s, system function returned value : %d\n", lscmd, i);
 #endif
 }