summaryrefslogtreecommitdiff
path: root/psycopg/connection_int.c
diff options
context:
space:
mode:
Diffstat (limited to 'psycopg/connection_int.c')
-rw-r--r--psycopg/connection_int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/psycopg/connection_int.c b/psycopg/connection_int.c
index aea2841..8fce908 100644
--- a/psycopg/connection_int.c
+++ b/psycopg/connection_int.c
@@ -154,7 +154,7 @@ conn_notice_clean(connectionObject *self)
while (notice != NULL) {
tmp = notice;
notice = notice->next;
- free((void*)tmp->message);
+ free(tmp->message);
free(tmp);
}