about summary refs log tree commit diff
path: root/lr.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2015-10-27 22:11:06 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2015-10-27 22:11:06 +0100
commit3f197a7be23514d5fd3d33c8ab9bf098ea84f3d1 (patch)
treeacab2e7fd06afca57a55e6ad1e7c767cf20aa7ef /lr.c
parentb48a24ea354d530694865691a60a71fae5b0373c (diff)
downloadlr-3f197a7be23514d5fd3d33c8ab9bf098ea84f3d1.tar.gz
lr-3f197a7be23514d5fd3d33c8ab9bf098ea84f3d1.tar.xz
lr-3f197a7be23514d5fd3d33c8ab9bf098ea84f3d1.zip
make fstype missing not bomb out at runtime
Diffstat (limited to 'lr.c')
-rw-r--r--lr.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lr.c b/lr.c
index 1463aee..db38ac5 100644
--- a/lr.c
+++ b/lr.c
@@ -759,13 +759,10 @@ scan_filesystems()
 	scanned_filesystems = 1;
 }
 #else
+#warning fstype lookup not implemented on this platform, keeping st_dev as number
 void
 scan_filesystems()
 {
-	fprintf(stderr,
-	    "%s: fstype not implemented on this platform, send a patch.\n",
-	    argv0);
-	exit(1);
 }
 #endif