Bug 1124565: Fix position of const qualifiers for |sDefaultBackend|, r=shuang

This patch fixes the position of the second const qualifier for
|sDefaultBackend|. Both, pointer and memory, are now marked as
constant.
This commit is contained in:
Thomas Zimmermann 2015-01-22 10:52:18 +01:00
parent b0d9382d22
commit 4a00715925

View File

@ -104,7 +104,7 @@ BluetoothInterface::GetInstance()
#ifdef MOZ_B2G_BT_BLUEDROID
static const char sDefaultBackend[] = "bluedroid";
#else
static const char const * sDefaultBackend = nullptr;
static const char* const sDefaultBackend = nullptr;
#endif
#endif