diff options
Diffstat (limited to 'media/mtp/MtpServer.cpp')
| -rw-r--r-- | media/mtp/MtpServer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/mtp/MtpServer.cpp b/media/mtp/MtpServer.cpp index 0b99cb1..cc6fdad 100644 --- a/media/mtp/MtpServer.cpp +++ b/media/mtp/MtpServer.cpp @@ -25,9 +25,9 @@ #include <cutils/properties.h> #include "MtpDebug.h" -#include "MtpDatabase.h" #include "MtpProperty.h" #include "MtpServer.h" +#include "MtpSqliteDatabase.h" #include "MtpStorage.h" #include "MtpStringBuffer.h" @@ -122,7 +122,7 @@ MtpServer::MtpServer(int fd, const char* databasePath) mSendObjectHandle(kInvalidObjectHandle), mSendObjectFileSize(0) { - mDatabase = new MtpDatabase(); + mDatabase = new MtpSqliteDatabase(); mDatabase->open(databasePath, true); initObjectProperties(); |
