From: Brian Aker Date: Mon, 18 Jan 2010 19:22:44 +0000 (-0800) Subject: Fix conversion from macro to inline. X-Git-Tag: 0.40~90 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=3f74469068084eab48af568f477360fb24dc8bcb;p=awesomized%2Flibmemcached Fix conversion from macro to inline. --- diff --git a/libmemcached/result.h b/libmemcached/result.h index c45ae202..3374c515 100644 --- a/libmemcached/result.h +++ b/libmemcached/result.h @@ -82,7 +82,7 @@ static inline void memcached_result_set_flags(memcached_result_st *self, uint32_ self->flags= flags; } -static inline void memcached_result_set_expiration(memcached_result_st *self, uint32_t expiration) +static inline void memcached_result_set_expiration(memcached_result_st *self, time_t expiration) { self->expiration= expiration; }