summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorrcyeske <rcyeske>2001-03-08 00:17:07 +0000
committerrcyeske <rcyeske>2001-03-08 00:17:07 +0000
commitff25f8d4eb5a4e623576d031d3a74d495079245d (patch)
treed77ee5a6d581e163abaee3b198905c4d9fbd03b7 /src/main.c
parent0d85f89fc5c610338ec2f1e823d63edb01ae7981 (diff)
downloadratpoison-ff25f8d4eb5a4e623576d031d3a74d495079245d.zip
(read_startup_files): Use PRINT_DEBUG to report failure
to load rc files.
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 0342dbd..ee63f23 100644
--- a/src/main.c
+++ b/src/main.c
@@ -277,12 +277,12 @@ read_startup_files ()
if ((fileptr = fopen (filename, "r")) == NULL)
{
/* we probably don't need to report this, its not an error */
- fprintf (stderr, "ratpoison: could not open %s\n", filename);
+ PRINT_DEBUG ("ratpoison: could not open %s\n", filename);
if ((fileptr = fopen ("/etc/ratpoisonrc", "r")) == NULL)
{
/* neither is this */
- fprintf (stderr, "ratpoison: could not open /etc/ratpoisonrc\n");
+ PRINT_DEBUG ("ratpoison: could not open /etc/ratpoisonrc\n");
}
}