1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-03 05:41:09 +03:00

imp toku_os_ closes #1253

git-svn-id: file:///svn/toku/tokudb.1032b@7837 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Rich Prohaska
2013-04-16 23:57:28 -04:00
committed by Yoni Fogel
parent 6258817caf
commit 6ebe124875
49 changed files with 122 additions and 122 deletions

View File

@@ -54,7 +54,7 @@ int toku_db_id_create(toku_db_id** pdbid, int fd,
if (!db_id) { r = ENOMEM; goto cleanup; }
memset(db_id, 0, sizeof(*db_id));
r = os_get_unique_file_id(fd, &db_id->id);
r = toku_os_get_unique_file_id(fd, &db_id->id);
if (r!=0) goto cleanup;
db_id->sub_database_name = toku_strdup(sub_database_name);