diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-04-20 16:18:03 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-04-20 16:18:03 +0000 |
commit | 6bc36c6c67fed984af4f60224a7ea693d1b7d217 (patch) | |
tree | f78d31027eab43c40e0b80d68f03e6e97c356291 | |
parent | 33c2d047571cd4ebce2eb630515fc33aa3f05b98 (diff) |
Move variable declaration to top. Makes gcc2 happy.sco_port_update-baseXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_14XORG-6_8_99_13XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10
-rw-r--r-- | util.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -76,6 +76,7 @@ XeditPrintf(const char *format, ...) va_list va, va2; XawTextBlock text; + XawTextPosition pos; va_start(va, format); @@ -92,7 +93,7 @@ XeditPrintf(const char *format, ...) va_end(va); - XawTextPosition pos = XawTextSourceScan(XawTextGetSource(messwidget), + pos = XawTextSourceScan(XawTextGetSource(messwidget), 0, XawstAll, XawsdRight, 1, True); text.length = strlen(str); |