diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-26 02:58:42 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-26 02:58:42 -0600 |
commit | 7f3507b606b0f5c0c44cc59eb27e87575cf87701 (patch) | |
tree | 7a94f620d7bb5920916f17139dcf37a2b68b065d /cmd/srv9p/static9p.h | |
parent | 1dad21650eb6fb3a4b9bba6c0ddd1402930163e2 (diff) |
conventions: Don't have 2 ways to spell "implements_foo"
Stop defining "struct foo" as a synonym for "implements_foo".
Diffstat (limited to 'cmd/srv9p/static9p.h')
-rw-r--r-- | cmd/srv9p/static9p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/srv9p/static9p.h b/cmd/srv9p/static9p.h index 98b85a2..e03a480 100644 --- a/cmd/srv9p/static9p.h +++ b/cmd/srv9p/static9p.h @@ -29,7 +29,7 @@ struct static_dir { _static_common; /* NULL-terminated */ - struct lib9p_srv_file *members[]; + implements_lib9p_srv_file *members[]; }; |