Formatting.
diff --git a/src/egl_context.c b/src/egl_context.c
index 7e58b03..fc41f2c 100644
--- a/src/egl_context.c
+++ b/src/egl_context.c
@@ -361,7 +361,7 @@
int _glfwInitOpenGL(void)
{
-#ifdef _GLFW_DLOPEN_LIBEGL
+#if defined(_GLFW_DLOPEN_LIBEGL)
int i;
char* libEGL_names[ ] =
{
@@ -414,7 +414,7 @@
void _glfwTerminateOpenGL(void)
{
-#ifdef _GLFW_DLOPEN_LIBEGL
+#if defined(_GLFW_DLOPEN_LIBEGL)
if (_glfw.egl.libEGL != NULL)
{
dlclose(_glfw.egl.libEGL);
@@ -474,7 +474,7 @@
void _glfwDestroyContext(_GLFWwindow* window)
{
-#if _GLFW_X11
+#if defined(_GLFW_X11)
if (window->egl.visual)
{
XFree(window->egl.visual);