diff options
author | 諏訪子 <suwako@076.moe> | 2024-06-18 14:44:12 +0900 |
---|---|---|
committer | 諏訪子 <suwako@076.moe> | 2024-06-18 14:44:12 +0900 |
commit | 3d1ebf7ac8f9bbc19b62e9e8327f6c3cdb13550f (patch) | |
tree | 0e80577abbfa6e43e104e0eb95f28f142957710d /src/uptime.c | |
parent | 794dffcfe2204a6b7d92072e7af54e6e058dcbe9 (diff) |
Linux: CPUの表示の追加
Diffstat (limited to 'src/uptime.c')
-rw-r--r-- | src/uptime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uptime.c b/src/uptime.c index 8198669..c9f1c8e 100644 --- a/src/uptime.c +++ b/src/uptime.c @@ -9,7 +9,7 @@ void run_uptime_command(const char *command) { FILE *p = popen(command, "r"); if (!p) { - fprintf(stderr, "ホストコマンドを実効に失敗: %s", command); + fprintf(stderr, "起動時間コマンドを実効に失敗: %s", command); return; } |