diff options
Diffstat (limited to 'base/file_path.h')
-rw-r--r-- | base/file_path.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/file_path.h b/base/file_path.h index 6484c5a..6887cdc 100644 --- a/base/file_path.h +++ b/base/file_path.h @@ -357,9 +357,11 @@ class FilePath { #if defined(OS_POSIX) #define FILE_PATH_LITERAL(x) x #define PRFilePath "s" +#define PRFilePathLiteral "%s" #elif defined(OS_WIN) #define FILE_PATH_LITERAL(x) L ## x #define PRFilePath "ls" +#define PRFilePathLiteral L"%ls" #endif // OS_WIN // Provide a hash function so that hash_sets and maps can contain FilePath |