diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ntioctl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/ntioctl.h b/source3/include/ntioctl.h index 41b1dcefa2..3ed4a194a7 100644 --- a/source3/include/ntioctl.h +++ b/source3/include/ntioctl.h @@ -77,13 +77,13 @@ /* For FSCTL_GET_SHADOW_COPY_DATA ...*/ typedef char SHADOW_COPY_LABEL[25]; -typedef struct shadow_copy_data { +struct shadow_copy_data { TALLOC_CTX *mem_ctx; /* Total number of shadow volumes currently mounted */ uint32 num_volumes; /* Concatenated list of labels */ SHADOW_COPY_LABEL *labels; -} SHADOW_COPY_DATA; +}; #endif /* _NTIOCTL_H */ |