diff options
Diffstat (limited to 'lib/libc/uuid/uuid_to_string.c')
-rw-r--r-- | lib/libc/uuid/uuid_to_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/uuid/uuid_to_string.c b/lib/libc/uuid/uuid_to_string.c index f816391..35f8581 100644 --- a/lib/libc/uuid/uuid_to_string.c +++ b/lib/libc/uuid/uuid_to_string.c @@ -49,7 +49,7 @@ uuid_to_string(const uuid_t *u, char **s, uint32_t *status) *status = uuid_s_ok; /* Why allow a NULL-pointer here? */ - if (s == 0) + if (s == NULL) return; if (u == NULL) { |