Skip to content
Snippets Groups Projects
Commit eab220d8 authored by developer4's avatar developer4
Browse files

Minor cosmetic changes in main.c

parent c83c01f1
Branches
No related merge requests found
......@@ -73,14 +73,15 @@ int main(void)
status = ReaderReset();
if (status != UFR_OK)
{
ReaderClose();
printf("Error while opening device, status is: 0x%08X\n", status);
getchar();
return EXIT_FAILURE;
}
#if __WIN32 || __WIN64
Sleep(500);
Sleep(500);
#else // if linux || __linux__ || __APPLE__
usleep(500000);
usleep(500000);
#endif
if (!CheckDependencies())
......
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