aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.h b/common.h
index 05c795bb..2028a5d2 100644
--- a/common.h
+++ b/common.h
@@ -135,9 +135,9 @@ extern const wchar_t *program_name;
*/
#define FATAL_EXIT() \
{ \
- ssize_t exit_read_count;char exit_read_buff; \
+ char exit_read_buff; \
show_stackframe(); \
- exit_read_count=read( 0, &exit_read_buff, 1 ); \
+ read( 0, &exit_read_buff, 1 ); \
exit_without_destructors( 1 ); \
} \