summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2020-04-22 13:33:59 +0100
committerAlexander Larsson <alexander.larsson@gmail.com>2020-04-23 09:56:35 +0200
commitd51e7468e1dca9fbe0ff7793ea6aa4b8dde4fac3 (patch)
tree4df8ed5eb5d887391b7881baf593f4fad12bac1c
parent129d72e6679885533b0779a7ff9a185edc3d55f4 (diff)
downloadflatpak-d51e7468e1dca9fbe0ff7793ea6aa4b8dde4fac3.tar.gz
dir: Fix a typo in a flags enum name
Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--common/flatpak-dir-private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/flatpak-dir-private.h b/common/flatpak-dir-private.h
index 0f33963f..82ea4359 100644
--- a/common/flatpak-dir-private.h
+++ b/common/flatpak-dir-private.h
@@ -245,7 +245,7 @@ typedef enum {
typedef enum {
FLATPAK_HELPER_INSTALL_BUNDLE_FLAGS_NONE = 0,
FLATPAK_HELPER_INSTALL_BUNDLE_FLAGS_NO_INTERACTION = 1 << 0,
-} FlatpakHelperInstalBundleFlags;
+} FlatpakHelperInstallBundleFlags;
#define FLATPAK_HELPER_INSTALL_BUNDLE_FLAGS_ALL (FLATPAK_HELPER_INSTALL_BUNDLE_FLAGS_NO_INTERACTION)