From 1718924b10695dee82532b41b58498f675f87b2e Mon Sep 17 00:00:00 2001 From: Tomas Hruby Date: Mon, 26 Apr 2010 14:44:20 +0000 Subject: [PATCH] Fixed printf warning in the filter driver --- drivers/filter/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/filter/main.c b/drivers/filter/main.c index 54a7c3522..4c588d556 100644 --- a/drivers/filter/main.c +++ b/drivers/filter/main.c @@ -472,7 +472,7 @@ PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *info) driver_init(); /* Subscribe to driver events for VFS drivers. */ - r = ds_subscribe("drv\.vfs\..*", DSF_INITIAL | DSF_OVERWRITE); + r = ds_subscribe("drv\\.vfs\\..*", DSF_INITIAL | DSF_OVERWRITE); if(r != OK) { panic("Filter: can't subscribe to driver events"); } -- 2.44.0