Renamed enum

This commit is contained in:
2024-03-03 01:23:12 -05:00
parent 44a5f6773c
commit fd2ee16f79
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
enum guestfs_inspect_command {
enum guestfs_inspect_command_const {
GUESTFS_COMMAND_LS,
/* GUESTFS_COMMAND_TOUCH, */
/* GUESTFS_COMMAND_MKDIR, */
@@ -12,7 +12,7 @@ struct guestfs_ls_args {
struct guestfs_cat_args {};
struct guestfs_inpsect_command {
enum guestfs_inspect_command command;
enum guestfs_inspect_command_const command;
union {
struct guestfs_ls_args ls;
struct guestfs_cat_args cat;