From f3fa1d29badba0b13c59b1790fafe966c0f44042 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;