summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'Modules')
-rw-r--r--Modules/soundex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/soundex.c b/Modules/soundex.c
index cfa9339..c1cbf70 100644
--- a/Modules/soundex.c
+++ b/Modules/soundex.c
@@ -21,7 +21,7 @@
static char soundex_module__doc__[] =
"Perform Soundex comparisons on strings, allowing non-literal matching.";
-void soundex_hash(char *str, char *result)
+static void soundex_hash(char *str, char *result)
{
char *sptr = str; /* pointer into str */
char *rptr = result; /* pointer into result */