1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- libfs/fsck_message.h.orig 2003-06-25 23:04:21.000000000 +0200
+++ libfs/fsck_message.h 2003-09-21 21:29:16.000000000 +0200
@@ -9,12 +9,10 @@
#define fsck_ref_msg(msg_num) msg_defs[msg_num].msg_txt
#define fsck_send_msg(msg_num, arg...) \
- v_fsck_send_msg(msg_num, __FILE__, \
- __LINE__, ## arg);
+ v_fsck_send_msg(msg_num, __FILE__ , __LINE__ , ## arg);
#define send_msg(msg_num, arg...) \
- v_send_msg(msg_num, __FILE__, \
- __LINE__, ## arg);
+ v_send_msg(msg_num, __FILE__ , __LINE__ , ## arg);
// Define the maximum number of messages
|