このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
Immanuel
/
btpd
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
Print the result of, and not the address of, getpid().
master
Richard Nyberg
16年前
親
7ba163fe5a
コミット
33f309c204
1個のファイルの変更
、
1行の追加
、
1行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+1
-1
btpd/main.c
+ 1
- 1
btpd/main.c
ファイルの表示
@@ -19,7 +19,7 @@ writepid(int pidfd)
{
int nw;
char pidtxt[100];
nw = snprintf(pidtxt, sizeof(pidtxt), "%ld", (long)getpid);
nw = snprintf(pidtxt, sizeof(pidtxt), "%ld", (long)getpid
()
);
ftruncate(pidfd, 0);
write(pidfd, pidtxt, nw);
}
書き込み
プレビュー
読み込み中…
キャンセル
保存