libc_fs: Use priority higher than libc_vfs

This way, we make sure that libc_fs is used if both plugins are
present, which happens during the transition to libc_vfs.
This commit is contained in:
Norman Feske 2014-04-18 16:09:07 +02:00 committed by Christian Helmuth
parent 16378745bf
commit fd66252ca4

View File

@ -211,8 +211,10 @@ class Plugin : public Libc::Plugin
/**
* Constructor
*
* Use priority 1 to override libc_vfs.
*/
Plugin() { }
Plugin() : Libc::Plugin(1) { }
~Plugin() { }