Commit 46d29884 authored by Rocky Bernstein's avatar Rocky Bernstein

Use memset, not bzero. Helps with -mno-cygwin (and possibly others).

parent 8c652217
......@@ -1173,7 +1173,7 @@ VCDFormatStr(const input_thread_t *p_input, thread_vcd_data_t *p_vcd,
bool saw_control_prefix = false;
size_t format_len = strlen(format_str);
bzero(temp_str, TEMP_STR_SIZE);
memset(temp_str, 0, TEMP_STR_SIZE);
for (i=0; i<format_len; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment