aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-04-05 13:01:08 -0700
committerPaul Eggert <[email protected]>2011-04-05 13:01:08 -0700
commit583f48b90b03bcca4f561f1075aa674a04a7aa08 (patch)
treeb9871518e9218d1c791255d559b0248254ab59be /src
parent72b04a8a970920bec1a50b75fc8032d3f0b04416 (diff)
* eval.c (Fsignal): Remove excess argument to 'fatal'.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/eval.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c7d14843bc..45eee78158 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,8 @@
Fix more problems found by GCC 4.6.0's static checks.
+ * eval.c (Fsignal): Remove excess argument to 'fatal'.
+
* coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
This avoids several warnings with gcc -Wstrict-overflow.
(DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
diff --git a/src/eval.c b/src/eval.c
index d1a63a7676..93da7799be 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1757,7 +1757,7 @@ See also the function `condition-case'. */)
data = Fcons (error_symbol, data);
string = Ferror_message_string (data);
- fatal ("%s", SDATA (string), 0);
+ fatal ("%s", SDATA (string));
}
/* Internal version of Fsignal that never returns.