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

Commit 6c760954 authored by Glenn Kasten's avatar Glenn Kasten
Browse files

Fix build warnings

Change-Id: Ia5b8da2cfed7ae02c9e8e03e8bae22b2a68684a0
parent 5873400a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -581,7 +581,7 @@ static ResponseCode get(KeyStore* keyStore, int sock, uid_t uid, Value* keyName,
static ResponseCode insert(KeyStore* keyStore, int sock, uid_t uid, Value* keyName, Value* val) {
static ResponseCode insert(KeyStore* keyStore, int sock, uid_t uid, Value* keyName, Value* val) {
    char filename[NAME_MAX];
    char filename[NAME_MAX];
    encode_key(filename, uid, keyName);
    encode_key(filename, uid, keyName);
    Blob keyBlob(val->value, val->length, 0, NULL);
    Blob keyBlob(val->value, val->length, NULL, 0);
    return keyStore->put(filename, &keyBlob);
    return keyStore->put(filename, &keyBlob);
}
}