Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d0b625d

Browse files
committed
Correct the sense of a couple of conditional compilations -- used #ifndef
when #ifdef was needed. This closes (reallu!) SF bug #417418.
1 parent 6b4593e commit d0b625d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/termios.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,10 +536,10 @@ static struct constant {
536536
{"VSTOP", VSTOP},
537537
{"VSUSP", VSUSP},
538538
{"VEOL", VEOL},
539-
#ifndef VREPRINT
539+
#ifdef VREPRINT
540540
{"VREPRINT", VREPRINT},
541541
#endif
542-
#ifndef VDISCARD
542+
#ifdef VDISCARD
543543
{"VDISCARD", VDISCARD},
544544
#endif
545545
{"VWERASE", VWERASE},

0 commit comments

Comments
 (0)