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

Commit 795e8f42 authored by Android (Google) Code Review's avatar Android (Google) Code Review Committed by Android Git Automerger
Browse files

am 0d039ba3: Merge change 7508 into donut

Merge commit '0d039ba328a59fc81280fbecf68aad2d2cba7234'

* commit '0d039ba328a59fc81280fbecf68aad2d2cba7234':
  keystore: Fix a compile warning.
parents da1bafd6 274bd902
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@
 * is returned. Otherwise it returns the value in dynamically allocated memory
 * and sets the size if the pointer is not NULL. One can release the memory by
 * calling free(). */
static char *keystore_get(char *key, int *size)
static char *keystore_get(const char *key, int *size)
{
    char buffer[MAX_KEY_VALUE_LENGTH];
    char *value;