Fix sizeof wrong type
This commit is contained in:
parent
9eda9be3cf
commit
5ab3537179
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ String _find_build_engine_on_unix(const String &p_name) {
|
|||
"/opt/novell/mono/bin/"
|
||||
};
|
||||
|
||||
for (int i = 0; i < sizeof(locations) / sizeof(char); i++) {
|
||||
for (int i = 0; i < sizeof(locations) / sizeof(const char *); i++) {
|
||||
String location = locations[i];
|
||||
|
||||
if (FileAccess::exists(location + p_name)) {
|
||||
|
|
Loading…
Reference in a new issue