Skip to content

Commit

Permalink
[Build] Fix autotools build system.
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveDavenport committed Jun 12, 2023
1 parent 47f37f2 commit e203084
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ SOURCES=\
source/modes/script.c\
source/modes/help-keys.c\
source/modes/filebrowser.c\
source/modes/recursivebrowser.c\
include/display.h\
include/xcb.h\
include/xcb-internal.h\
Expand Down Expand Up @@ -126,6 +127,7 @@ SOURCES=\
include/modes/modes.h\
include/modes/help-keys.h\
include/modes/filebrowser.h\
include/modes/recursivebrowser.h\
include/modes/dmenuscriptshared.h\
resources/resources.c\
resources/resources.h
Expand Down
6 changes: 3 additions & 3 deletions include/mode-private.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ G_BEGIN_DECLS
*/
typedef enum {
/** Mode type is not set */
MODE_TYPE_UNSET = 0b0000,
MODE_TYPE_UNSET = 0x0,
/** A normal mode. */
MODE_TYPE_SWITCHER = 0b0001,
MODE_TYPE_SWITCHER = 0x1,
/** A mode that can be used to completer */
MODE_TYPE_COMPLETER = 0b0010,
MODE_TYPE_COMPLETER = 0x2,
} ModeType;

/**
Expand Down

0 comments on commit e203084

Please sign in to comment.