From 5532cf3178385dc7d5414b65e9f01966125d8a9b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 18 Oct 2012 19:16:37 +0200 Subject: avutil/mem: K&R formatting cosmetics --- libavutil/mem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavutil/mem.h') diff --git a/libavutil/mem.h b/libavutil/mem.h index fb222061f7..4f14f27a91 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -89,7 +89,7 @@ void *av_malloc(size_t size) av_malloc_attrib av_alloc_size(1); * be allocated. * @see av_malloc() */ -av_alloc_size(1,2) static inline void *av_malloc_array(size_t nmemb, size_t size) +av_alloc_size(1, 2) static inline void *av_malloc_array(size_t nmemb, size_t size) { if (size <= 0 || nmemb >= INT_MAX / size) return NULL; @@ -140,7 +140,7 @@ void *av_mallocz(size_t size) av_malloc_attrib av_alloc_size(1); * @see av_mallocz() * @see av_malloc_array() */ -av_alloc_size(1,2) static inline void *av_mallocz_array(size_t nmemb, size_t size) +av_alloc_size(1, 2) static inline void *av_mallocz_array(size_t nmemb, size_t size) { if (size <= 0 || nmemb >= INT_MAX / size) return NULL; -- cgit v1.2.3