Index: uspace/srv/fs/tmpfs/tmpfs_ops.c
===================================================================
--- uspace/srv/fs/tmpfs/tmpfs_ops.c	(revision 5ab597d597af91ae13344efc2265b1cbfb0ee935)
+++ uspace/srv/fs/tmpfs/tmpfs_ops.c	(revision b24786a3475ffcd354ab3fd707a7bb77ce9fa0d7)
@@ -65,4 +65,6 @@
 static tmpfs_dentry_t *root;
 
+#define TMPFS_DEV		0	/**< Dummy device handle for TMPFS */
+
 /*
  * Implementation of the libfs interface.
@@ -73,5 +75,5 @@
 static void *tmpfs_node_get(dev_handle_t, fs_index_t);
 static void tmpfs_node_put(void *);
-static void *tmpfs_create_node(int);
+static void *tmpfs_create_node(dev_handle_t, int);
 static bool tmpfs_link_node(void *, void *, const char *);
 static int tmpfs_unlink_node(void *, void *);
@@ -229,5 +231,5 @@
 	if (!hash_table_create(&dentries, DENTRIES_BUCKETS, 1, &dentries_ops))
 		return false;
-	root = (tmpfs_dentry_t *) tmpfs_create_node(L_DIRECTORY);
+	root = (tmpfs_dentry_t *) tmpfs_create_node(TMPFS_DEV, L_DIRECTORY);
 	if (!root) {
 		hash_table_destroy(&dentries);
@@ -283,5 +285,5 @@
 }
 
-void *tmpfs_create_node(int lflag)
+void *tmpfs_create_node(dev_handle_t dev_handle, int lflag)
 {
 	assert((lflag & L_FILE) ^ (lflag & L_DIRECTORY));
