summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorrcyeske <rcyeske>2001-02-25 00:47:51 +0000
committerrcyeske <rcyeske>2001-02-25 00:47:51 +0000
commit1e87f88ba03b8a7f0a84691027e082f849eaf24d (patch)
tree6a54d45d5a79ab2beb6af2661f0bf8c7d99b62dc /src/main.c
parent610e5411c20c1dcf5c599067fe00585140e79841 (diff)
downloadratpoison-1e87f88ba03b8a7f0a84691027e082f849eaf24d.zip
s/fprintf/PRINT_DEBUG/
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 9dfc8a4..4ba01ba 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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);