Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e175d77b authored by Marco Nelissen's avatar Marco Nelissen
Browse files

Fix build

Change-Id: I9196e316dcf7a58096658313bdc925b11b23a7de
parent 03357add
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -425,7 +425,7 @@ static bool MakeURL(const char *baseURL, const char *url, AString *out) {
            end = strlen(baseURL);
        }
        // Check for the last slash before a potential query string
        for (ssize_t pos - 1 = end; pos >= 0; pos--) {
        for (ssize_t pos = end - 1; pos >= 0; pos--) {
            if (baseURL[pos] == '/') {
                end = pos;
                break;