diff options
author | David Walter Seikel | 2014-01-30 13:58:26 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-01-30 13:58:26 +1000 |
commit | c278d23113c9e881bdc4bf0e227df4d9f5afbd19 (patch) | |
tree | 1278f007ecf0d1791f663f91291567162afa645c | |
parent | Convert to using pselect(), more portable than ppoll(). (diff) | |
download | boxes-c278d23113c9e881bdc4bf0e227df4d9f5afbd19.zip boxes-c278d23113c9e881bdc4bf0e227df4d9f5afbd19.tar.gz boxes-c278d23113c9e881bdc4bf0e227df4d9f5afbd19.tar.bz2 boxes-c278d23113c9e881bdc4bf0e227df4d9f5afbd19.tar.xz |
Ah, THAT's why the sig atomic thing didn't work.
-rw-r--r-- | boxes.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -658,7 +658,7 @@ static box *rootBox; // Parent of the rest of the boxes, or the only box. Alway | |||
658 | static box *currentBox; | 658 | static box *currentBox; |
659 | static view *commandLine; | 659 | static view *commandLine; |
660 | static int commandMode; | 660 | static int commandMode; |
661 | static /*sigatomic_t*/ volatile int sigWinch; | 661 | static volatile sig_atomic_t sigWinch; |
662 | 662 | ||
663 | #define MEM_SIZE 128 // Chunk size for line memory allocation. | 663 | #define MEM_SIZE 128 // Chunk size for line memory allocation. |
664 | 664 | ||