mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 00:00:09 +00:00
Merge "editline: Avoid shifting a negative signed value."
This commit is contained in:
@@ -55,9 +55,9 @@
|
|||||||
|
|
||||||
#define EL_BUFSIZ 1024 /* Maximum line size */
|
#define EL_BUFSIZ 1024 /* Maximum line size */
|
||||||
|
|
||||||
#define HANDLE_SIGNALS 1<<0
|
#define HANDLE_SIGNALS 0x01
|
||||||
#define NO_TTY 1<<1
|
#define NO_TTY 0x02
|
||||||
#define EDIT_DISABLED 1<<2
|
#define EDIT_DISABLED 0x04
|
||||||
|
|
||||||
typedef int bool_t; /* True or not */
|
typedef int bool_t; /* True or not */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user