diff options
Diffstat (limited to 'networking/sendmail.c')
-rw-r--r-- | networking/sendmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/sendmail.c b/networking/sendmail.c index f37d97f73..027656dd8 100644 --- a/networking/sendmail.c +++ b/networking/sendmail.c | |||
@@ -187,7 +187,7 @@ static int smtp_checkp(const char *fmt, const char *param, int code) | |||
187 | bb_error_msg_and_die("%s failed", msg); | 187 | bb_error_msg_and_die("%s failed", msg); |
188 | } | 188 | } |
189 | 189 | ||
190 | static int inline smtp_check(const char *fmt, int code) | 190 | static inline int smtp_check(const char *fmt, int code) |
191 | { | 191 | { |
192 | return smtp_checkp(fmt, NULL, code); | 192 | return smtp_checkp(fmt, NULL, code); |
193 | } | 193 | } |
@@ -224,7 +224,7 @@ static void pop3_checkr(const char *fmt, const char *param, char **ret) | |||
224 | bb_error_msg_and_die("%s failed", msg); | 224 | bb_error_msg_and_die("%s failed", msg); |
225 | } | 225 | } |
226 | 226 | ||
227 | static void inline pop3_check(const char *fmt, const char *param) | 227 | static inline void pop3_check(const char *fmt, const char *param) |
228 | { | 228 | { |
229 | pop3_checkr(fmt, param, NULL); | 229 | pop3_checkr(fmt, param, NULL); |
230 | } | 230 | } |