Fixed printf warning in the filter driver

This commit is contained in:
Tomas Hruby 2010-04-26 14:44:20 +00:00
parent 0f353411d7
commit 1718924b10

View file

@ -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");
}