From 12e09f9f85ac48ff891adf92f3b2c9a5fea27273 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 4 Dec 2021 14:10:21 -0800 Subject: Chore(REMOVE): finished deprecation of old io functions. The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over. --- src/cmd/dwm/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cmd/dwm') diff --git a/src/cmd/dwm/util.c b/src/cmd/dwm/util.c index 0db71cc..4bf5359 100644 --- a/src/cmd/dwm/util.c +++ b/src/cmd/dwm/util.c @@ -35,8 +35,8 @@ getparentprocess(pid_t p) uint v = 0; #if defined(__linux__) - io·Stream *f; - char buf[256]; + FILE *f; + char buf[256]; snprintf(buf, sizeof(buf) - 1, "/proc/%u/stat", (unsigned)p); if (!(f = fopen(buf, "r"))) -- cgit v1.2.1