aboutsummaryrefslogtreecommitdiffstats
path: root/smtk-import/smartrak.c
diff options
context:
space:
mode:
Diffstat (limited to 'smtk-import/smartrak.c')
-rw-r--r--smtk-import/smartrak.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/smtk-import/smartrak.c b/smtk-import/smartrak.c
index 63b3af799..8ef01de48 100644
--- a/smtk-import/smartrak.c
+++ b/smtk-import/smartrak.c
@@ -211,7 +211,7 @@ static MdbTableDef *smtk_open_table(MdbHandle *mdb, char *tablename, MdbColumn
* This is based in add_to_string() and add_to_string_va(), and, as its parents
* frees the original string.
*/
-static char *smtk_concat_str(const char *orig, const char *sep, const char *fmt, ...)
+static char *smtk_concat_str(char *orig, const char *sep, const char *fmt, ...)
{
char *str;
va_list args;
@@ -229,7 +229,7 @@ static char *smtk_concat_str(const char *orig, const char *sep, const char *fmt,
free_buffer(&out);
free_buffer(&in);
- free((void *)orig);
+ free(orig);
return str;
}