Bug 190790 xpcom/glue/standalone/nsGREDirServiceProvider.cpp", line 300: Warning: String literal converted to char* in assignment.

r=dougt sr=roc+mozn
This commit is contained in:
timeless%mozdev.org 2003-02-23 04:41:23 +00:00
Родитель 9c2c0ed8b6
Коммит 1552cf15e2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -473,7 +473,7 @@ nsGREDirServiceProvider::AddGRELocationToPath()
if (!grePath) if (!grePath)
return; return;
char* path = PR_GetEnv(XPCOM_SEARCH_KEY); const char* path = PR_GetEnv(XPCOM_SEARCH_KEY);
if (!path) { if (!path) {
path = ""; path = "";
} }