From: Anastasia Lyupa Date: Thu, 27 Jun 2013 09:07:29 +0000 (+0400) Subject: fix typing error X-Git-Tag: Tizen_SDK_2.3~212 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf4ed1be0e25eab0f5963a7c566a3b6fa09ebc33;p=platform%2Fcore%2Fsystem%2Fswap-probe.git fix typing error --- diff --git a/include/binproto.h b/include/binproto.h index a22b4f2..3593970 100644 --- a/include/binproto.h +++ b/include/binproto.h @@ -236,10 +236,10 @@ static inline char *pack_args(char *to, const char *fmt, ...) BUF_PTR = pack_string(BUF_PTR, file_path); \ } while (0) -#define PACK_SCREENSHOT(image_file_path, orienation) \ +#define PACK_SCREENSHOT(image_file_path, orientation) \ do { \ BUF_PTR = pack_string(BUF_PTR, image_file_path); \ - BUF_PTR = pack_int32(BUF_PTR, orienation); \ + BUF_PTR = pack_int32(BUF_PTR, orientation); \ } while (0) #define PACK_SCENE(scene_name, form_name, form_pointer, panel_name, panel_pointer, \