(scm_c_issue_deprecation_warning): Use malloc instead of scm_malloc.
[bpt/guile.git] / libguile / deprecation.c
index de643c2..18dfe0a 100644 (file)
@@ -67,7 +67,7 @@ scm_c_issue_deprecation_warning (const char *msg)
          scm_newline (scm_current_error_port ());
        }
       msg = strdup (msg);
-      iw = scm_malloc (sizeof (struct issued_warning));
+      iw = malloc (sizeof (struct issued_warning));
       if (msg == NULL || iw == NULL)
        return;
       iw->message = msg;