diff options
author | rcyeske <rcyeske> | 2001-02-25 00:47:51 +0000 |
---|---|---|
committer | rcyeske <rcyeske> | 2001-02-25 00:47:51 +0000 |
commit | 1e87f88ba03b8a7f0a84691027e082f849eaf24d (patch) | |
tree | 6a54d45d5a79ab2beb6af2661f0bf8c7d99b62dc /src | |
parent | 610e5411c20c1dcf5c599067fe00585140e79841 (diff) | |
download | ratpoison-1e87f88ba03b8a7f0a84691027e082f849eaf24d.zip |
s/fprintf/PRINT_DEBUG/
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -184,7 +184,7 @@ load_rc_file (char *filename) if ((rcfile = fopen (filename, "r")) == NULL) { - fprintf (stderr, "ratpoison: could not open %s\n", filename); + PRINT_DEBUG ("ratpoison: could not open %s\n", filename); } else { @@ -209,7 +209,7 @@ load_rc_file (char *filename) if (feof(rcfile) || (*(line + strlen(line) - 1) == '\n')) { - fprintf (stderr, "read line: %s\n", line); + PRINT_DEBUG ("rcfile line: %s\n", line); /* do it */ command (line); |