From 4ce52d4da3bf475a2c5f79f06f16010e6c8a8289 Mon Sep 17 00:00:00 2001 From: Michael Kuc Date: Mon, 5 Aug 2019 12:34:21 +0100 Subject: [PATCH] Replaced incorrect `#if` with `#ifdef`. Fixes #2. --- IO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IO.cpp b/IO.cpp index 6f4f0b8..58870c5 100644 --- a/IO.cpp +++ b/IO.cpp @@ -133,7 +133,7 @@ vector& getBuffer() else if (errno != EAGAIN && errno != EWOULDBLOCK) //Expect read would block { ERR(); -#if DEBUG_MSGS +#ifdef DEBUG_MSGS cerr << "Unknown stream error: " << errno << endl; #endif break;