[v1.03][X86] Fix freq functions argument to comply with what pthread expects

This commit is contained in:
Dr-Noob
2023-01-29 09:30:30 +01:00
parent 6eb2357485
commit be600728d7
7 changed files with 10 additions and 6 deletions

View File

@@ -10,7 +10,8 @@
#include <stdint.h>
#include "freq.h"
void* compute_avx(void) {
void* compute_avx(void * pthread_arg) {
UNUSED(pthread_arg);
bool end = false;
struct timeval begin, now;