Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2012-11-07 15:55:34 +0000
committerSilenio Quarti2012-11-07 15:55:34 +0000
commit001f791fb525485866ffc4b7c6107c4f7de265e4 (patch)
treed840da4755d070de2c3583d6412bbcb75726b5bc /bundles/org.eclipse.equinox.executable
parent6fa77dfe6f22722a27806b11b892dae2014a4e7b (diff)
downloadrt.equinox.framework-001f791fb525485866ffc4b7c6107c4f7de265e4.tar.gz
rt.equinox.framework-001f791fb525485866ffc4b7c6107c4f7de265e4.tar.xz
rt.equinox.framework-001f791fb525485866ffc4b7c6107c4f7de265e4.zip
typo checking if GTK3 was loaded
Diffstat (limited to 'bundles/org.eclipse.equinox.executable')
-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