Skip to content
Snippets Groups Projects
Unverified Commit 39c01ce6 authored by Joakim Nohlgård's avatar Joakim Nohlgård Committed by GitHub
Browse files

Merge pull request #8241 from haukepetersen/fix_timex_msinus

sys/timex: make NS_PER_US unsigned
parents 855f47db e9334e6d
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ extern "C" { ...@@ -56,7 +56,7 @@ extern "C" {
/** /**
* @brief The number of nanoseconds per microsecond * @brief The number of nanoseconds per microsecond
*/ */
#define NS_PER_US (1000) #define NS_PER_US (1000U)
/** /**
* @brief The maximum length of the string representation of a timex timestamp * @brief The maximum length of the string representation of a timex timestamp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment