Archived
1
0
Fork 0

Fix code style

This commit is contained in:
Braiden Vasco 2015-07-26 01:26:07 +05:00
parent 76149ac920
commit 598b30c17f

4
main.c
View file

@ -118,10 +118,12 @@ int main()
// Event loop
struct timespec delay;
while (true) {
delay.tv_sec = 0;
delay.tv_nsec = tox_iteration_interval(tox) * 1000000;
nanosleep(&delay,NULL);
nanosleep(&delay, NULL);
tox_iterate(tox);
}