diff options
author | 諏訪子 <suwako@076.moe> | 2024-06-18 14:44:12 +0900 |
---|---|---|
committer | 諏訪子 <suwako@076.moe> | 2024-06-18 14:50:37 +0900 |
commit | 45597e432f9c683b91ed6f424ad70d96a537fb83 (patch) | |
tree | 88d79d63b73ada991148f65d97e842a315d8766d /src/memory.c | |
parent | 794dffcfe2204a6b7d92072e7af54e6e058dcbe9 (diff) |
Linux: CPUの表示の追加
Diffstat (limited to 'src/memory.c')
-rw-r--r-- | src/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memory.c b/src/memory.c index 6589da1..7fa55be 100644 --- a/src/memory.c +++ b/src/memory.c @@ -10,7 +10,7 @@ long long int run_mem_command(const char *command) { FILE *p = popen(command, "r"); if (!p) { - fprintf(stderr, "ホストコマンドを実効に失敗: %s", command); + fprintf(stderr, "メモリコマンドを実効に失敗: %s", command); return 0; } |