diff src/xs_support.c @ 40:1788f4ce6a44

Numerous changes towards 0.8
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 19 Jun 2003 22:38:01 +0000
parents dec37e16136e
children 3518ca5c8b0f
line wrap: on
line diff
--- a/src/xs_support.c	Thu Jun 19 20:49:01 2003 +0000
+++ b/src/xs_support.c	Thu Jun 19 22:38:01 2003 +0000
@@ -35,7 +35,7 @@
  
  /* Allocate memory for destination */
  *ppcResult = (gchar *) g_realloc(*ppcResult, strlen(pcStr) + 1);
- if (*ppResult == NULL) return -1;
+ if (*ppcResult == NULL) return -1;
 
  /* Copy to the destination */
  strcpy(*ppcResult, pcStr);