summaryrefslogtreecommitdiffstats
path: root/media/mtp/MtpUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'media/mtp/MtpUtils.cpp')
-rw-r--r--media/mtp/MtpUtils.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/media/mtp/MtpUtils.cpp b/media/mtp/MtpUtils.cpp
index a472781..77692cd 100644
--- a/media/mtp/MtpUtils.cpp
+++ b/media/mtp/MtpUtils.cpp
@@ -19,6 +19,8 @@
#include <cutils/tztime.h>
#include "MtpUtils.h"
+namespace android {
+
/*
DateTime strings follow a compatible subset of the definition found in ISO 8601, and
take the form of a Unicode string formatted as: "YYYYMMDDThhmmss.s". In this
@@ -70,4 +72,4 @@ void formatDateTime(time_t seconds, char* buffer, int bufferLength) {
tm.tm_year + 1900, tm.tm_mon, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec);
}
-
+} // namespace android