summaryrefslogtreecommitdiffstats
path: root/unix/dltest
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-03-04 09:40:51 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-03-04 09:40:51 (GMT)
commit91efcbd1bca5f810db5a35238d96dbf3c6738f30 (patch)
tree02b5262dc8138ecb2f4468777675f08c296754f8 /unix/dltest
parent5d1ff90217e8f835d3f5f09d51f8974f410a4f04 (diff)
downloadtcl-91efcbd1bca5f810db5a35238d96dbf3c6738f30.zip
tcl-91efcbd1bca5f810db5a35238d96dbf3c6738f30.tar.gz
tcl-91efcbd1bca5f810db5a35238d96dbf3c6738f30.tar.bz2
Fix minor syntax problems. [Bug 909288]
Diffstat (limited to 'unix/dltest')
-rw-r--r--unix/dltest/pkgua.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/unix/dltest/pkgua.c b/unix/dltest/pkgua.c
index b4c9b6d..6665a8f 100644
--- a/unix/dltest/pkgua.c
+++ b/unix/dltest/pkgua.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: pkgua.c,v 1.1 2004/02/24 22:58:48 dkf Exp $
+ * RCS: @(#) $Id: pkgua.c,v 1.2 2004/03/04 09:40:51 dkf Exp $
*/
#include "tcl.h"
@@ -41,7 +41,7 @@ static int interpTokenMapInitialised = 0;
#define MAX_REGISTERED_COMMANDS 2
-static int
+static void
PkguaInitTokensHashTable(void)
{
if (interpTokenMapInitialised) {
@@ -49,7 +49,7 @@ PkguaInitTokensHashTable(void)
}
Tcl_InitHashTable(&interpTokenMap, TCL_ONE_WORD_KEYS);
interpTokenMapInitialised = 1;
-};
+}
static int
PkguaFreeTokensHashTable(void)
@@ -62,7 +62,7 @@ PkguaFreeTokensHashTable(void)
Tcl_Free((char *) Tcl_GetHashValue(entryPtr));
}
interpTokenMapInitialised = 0;
-};
+}
static Tcl_Command *
PkguaInterpToTokens(interp)
@@ -84,7 +84,7 @@ PkguaInterpToTokens(interp)
cmdTokens = (Tcl_Command *) Tcl_GetHashValue(entryPtr);
}
return cmdTokens;
-};
+}
static void
PkguaDeleteTokens(interp)
@@ -97,7 +97,7 @@ PkguaDeleteTokens(interp)
Tcl_Free((char *) Tcl_GetHashValue(entryPtr));
Tcl_DeleteHashEntry(entryPtr);
}
-};
+}
/*
*----------------------------------------------------------------------