summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-02-14 11:36:03 -0500
committerTavian Barnes <tavianator@tavianator.com>2024-02-14 11:36:03 -0500
commit2fe4c9922bd02e0ec4bca8151cbff1a0bcf29dcf (patch)
treec03ab9f9deb787ffb87a89dad820a328475cc639 /src
parent16ba60f128f6a099f4d47291e570019a7c897f00 (diff)
downloadbfs-2fe4c9922bd02e0ec4bca8151cbff1a0bcf29dcf.tar.xz
ioq: Pack ioq_ent args structs
Diffstat (limited to 'src')
-rw-r--r--src/ioq.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ioq.h b/src/ioq.h
index 77aabaa..30e90e0 100644
--- a/src/ioq.h
+++ b/src/ioq.h
@@ -54,8 +54,8 @@ struct ioq_ent {
/** ioq_opendir() args. */
struct ioq_opendir {
struct bfs_dir *dir;
- int dfd;
const char *path;
+ int dfd;
enum bfs_dir_flags flags;
} opendir;
/** ioq_closedir() args. */
@@ -64,11 +64,11 @@ struct ioq_ent {
} closedir;
/** ioq_stat() args. */
struct ioq_stat {
- int dfd;
const char *path;
- enum bfs_stat_flags flags;
struct bfs_stat *buf;
void *xbuf;
+ int dfd;
+ enum bfs_stat_flags flags;
} stat;
};
};