Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c b/bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c
index eb0124b4f..b6c63a0b1 100644
--- a/bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c
+++ b/bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c
@@ -105,7 +105,7 @@ int loadGtk() {
gdkLib = dlopen(GDK3_LIB, DLFLAGS);
gtkLib = dlopen(GTK3_LIB, DLFLAGS);
}
- if (!gdkLib || !gdkLib) {
+ if (!gtkLib || !gdkLib) {
gdkLib = dlopen(GDK_LIB, DLFLAGS);
gtkLib = dlopen(GTK_LIB, DLFLAGS);
}

Back to the top