summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2005-04-20 16:18:03 +0000
committerAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2005-04-20 16:18:03 +0000
commit6bc36c6c67fed984af4f60224a7ea693d1b7d217 (patch)
treef78d31027eab43c40e0b80d68f03e6e97c356291
parent33c2d047571cd4ebce2eb630515fc33aa3f05b98 (diff)
-rw-r--r--util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util.c b/util.c
index 008792c..f718dbd 100644
--- a/util.c
+++ b/util.c
@@ -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);