diff minijss/jssmod.c @ 2414:69a5af2eb1ea

Remove useless dmMemset().
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 13 Jan 2020 23:27:01 +0200
parents 167ec99e57a5
children abc0b42cfbc5
line wrap: on
line diff
--- a/minijss/jssmod.c	Mon Jan 13 23:20:56 2020 +0200
+++ b/minijss/jssmod.c	Mon Jan 13 23:27:01 2020 +0200
@@ -327,7 +327,7 @@
 #endif
 
     // Free the module structure
-    dmMemset(module, 0, sizeof(JSSModule));
+    memset(module, 0, sizeof(JSSModule));
     dmFree(module);
 
     return DMERR_OK;