mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
Fix dereferencing strings.
This commit is contained in:
@@ -71,7 +71,7 @@ void MillionFiles(const char* path)
|
||||
|
||||
for(pos = 0; pos < 1000; pos++)
|
||||
{
|
||||
memset(&filename, 0, 9);
|
||||
memset(filename, 0, 9);
|
||||
sprintf(filename, "%08ld", pos);
|
||||
|
||||
h = fopen(filename, "w+");
|
||||
|
||||
Reference in New Issue
Block a user