From: Tomas Hruby Date: Mon, 26 Apr 2010 14:44:20 +0000 (+0000) Subject: Fixed printf warning in the filter driver X-Git-Tag: v3.1.7~124 X-Git-Url: http://zhaoyanbai.com/repos/icons/jhe061.png?a=commitdiff_plain;h=1718924b10695dee82532b41b58498f675f87b2e;p=minix.git Fixed printf warning in the filter driver --- 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"); }