1
Fork 0

Fix log text

This commit is contained in:
Nedko Arnaudov 2010-08-28 04:31:03 +03:00
parent 963715acb6
commit 60f75d97e8
1 changed files with 1 additions and 1 deletions

2
log.c
View File

@ -57,7 +57,7 @@ static bool a2j_log_open(void)
g_logfile = fopen(g_a2j_log_path, "a");
if (g_logfile == NULL)
{
fprintf(stderr, "Cannot open jackdbus log file \"%s\": %d (%s)\n", g_a2j_log_path, errno, strerror(errno));
fprintf(stderr, "Cannot open a2jmidid log file \"%s\": %d (%s)\n", g_a2j_log_path, errno, strerror(errno));
return false;
}