diff tests/dzlibtest.c @ 2414:69a5af2eb1ea

Remove useless dmMemset().
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 13 Jan 2020 23:27:01 +0200
parents b7cd5dd0b82e
children 9807ae37ad69
line wrap: on
line diff
--- a/tests/dzlibtest.c	Mon Jan 13 23:20:56 2020 +0200
+++ b/tests/dzlibtest.c	Mon Jan 13 23:27:01 2020 +0200
@@ -180,7 +180,7 @@
     dmMsg(0, "Operating mode: %s\n",
         compress ? "compress" : "decompress");
 
-    dmMemset(&zstr, 0, sizeof(zstr));
+    memset(&zstr, 0, sizeof(zstr));
 
     if ((inBuffer = malloc(SET_TMPBUF_SIZE)) == NULL ||
         (outBuffer = malloc(SET_TMPBUF_SIZE)) == NULL)