Skip to content

Commit

Permalink
fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbo authored Aug 13, 2024
1 parent 74b8c17 commit 9ae1e03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/winutils/winutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ filetime_to_number(FILETIME *filetime)

/* The filetime struct is not little endian, so we need to
* assign the low and high parts manually */
((uint32_t*)&number)[1] = filetime->dwHighDateTime;
((uint32_t*)&number)[0] = filetime->dwLowDateTime;
((uint32_t *)&number)[1] = filetime->dwHighDateTime;
((uint32_t *)&number)[0] = filetime->dwLowDateTime;

return number;
}
Expand Down

0 comments on commit 9ae1e03

Please sign in to comment.