summaryrefslogtreecommitdiff
path: root/rts/eventlog
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2009-09-16 14:23:24 +0000
committerSimon Marlow <marlowsd@gmail.com>2009-09-16 14:23:24 +0000
commit22b7fd79aeafa9a6b58f8448633197e00cec3962 (patch)
treeada1d0b3f88516ff77d0881a516ca23b19c350ca /rts/eventlog
parent3db8a9be9f89fe76e0a27f24ab02977974b6613f (diff)
downloadhaskell-22b7fd79aeafa9a6b58f8448633197e00cec3962.tar.gz
typo in error message
Diffstat (limited to 'rts/eventlog')
-rw-r--r--rts/eventlog/EventLog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/eventlog/EventLog.c b/rts/eventlog/EventLog.c
index a972f4da54..e5e71e65c8 100644
--- a/rts/eventlog/EventLog.c
+++ b/rts/eventlog/EventLog.c
@@ -173,7 +173,7 @@ initEventLogging(void)
/* Open event log file for writing. */
if ((event_log_file = fopen(event_log_filename, "wb")) == NULL) {
- sysErrorBelch("initEventLoggin: can't open %s", event_log_filename);
+ sysErrorBelch("initEventLogging: can't open %s", event_log_filename);
stg_exit(EXIT_FAILURE);
}