Skip to content
Snippets Groups Projects
Commit 7c773655 authored by Jenkins2's avatar Jenkins2 Committed by Gerrit Code Review
Browse files

Merge "editline: Avoid shifting a negative signed value."

parents ddc90b7d 3c26eec0
No related branches found
No related tags found
No related merge requests found
......@@ -55,9 +55,9 @@
#define EL_BUFSIZ 1024 /* Maximum line size */
#define HANDLE_SIGNALS 1<<0
#define NO_TTY 1<<1
#define EDIT_DISABLED 1<<2
#define HANDLE_SIGNALS 0x01
#define NO_TTY 0x02
#define EDIT_DISABLED 0x04
typedef int bool_t; /* True or not */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment