Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
atomic.h: quickfix
  • Loading branch information
perexg committed Mar 8, 2016
1 parent 8900493 commit 6f38a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/atomic.h
Expand Up @@ -176,13 +176,13 @@ atomic_get(volatile int *ptr)
}

static inline uint64_t
atomic_get_u64(volatile int *ptr)
atomic_get_u64(volatile uint64_t *ptr)
{
return atomic_add_u64(ptr, 0);
}

static inline int64_t
atomic_get_s64(volatile int *ptr)
atomic_get_s64(volatile int64_t *ptr)
{
return atomic_add_s64(ptr, 0);
}
Expand Down

0 comments on commit 6f38a3c

Please sign in to comment.