From 7b1aafd58c42d6d07972a1280dbd718c916e58f4 Mon Sep 17 00:00:00 2001 From: roland Date: Thu, 25 Aug 2005 01:43:59 +0000 Subject: (deref_string): prettify --- runtime/loc2c-runtime.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'runtime/loc2c-runtime.h') diff --git a/runtime/loc2c-runtime.h b/runtime/loc2c-runtime.h index 2cc73536..3b0289f3 100644 --- a/runtime/loc2c-runtime.h +++ b/runtime/loc2c-runtime.h @@ -172,9 +172,9 @@ #endif -#define deref_string(dst, addr, maxbytes) \ - ({ \ - if (__strncpy_from_user ((dst), (const char __user *) (addr), (maxbytes))) \ - goto deref_fault; \ - (dst); \ +#define deref_string(dst, addr, maxbytes) \ + ({ \ + if (__strncpy_from_user ((dst), (const char __user *) (addr), (maxbytes)))\ + goto deref_fault; \ + (dst); \ }) -- cgit