diff options
author | David Turner <digit@android.com> | 2011-04-11 09:36:51 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2011-04-11 09:36:51 -0700 |
commit | 95ea5b25db2dc300db560f9af5edabd1da438de5 (patch) | |
tree | a5957f86229c59f5bdfb24fef9fec5ae978fe76c | |
parent | 878c37d6428ff0ea6141dfddc22d549b07b5dde3 (diff) | |
parent | 8344e6d1b6847f042cbd6d36d1907fc089bdeefb (diff) | |
download | external_qemu-95ea5b25db2dc300db560f9af5edabd1da438de5.zip external_qemu-95ea5b25db2dc300db560f9af5edabd1da438de5.tar.gz external_qemu-95ea5b25db2dc300db560f9af5edabd1da438de5.tar.bz2 |
Merge "Converted a variable from char * to const char *. Removes compiler warnings with some compilers."
-rw-r--r-- | hw/goldfish_battery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/goldfish_battery.c b/hw/goldfish_battery.c index c5eef9c..c4988d7 100644 --- a/hw/goldfish_battery.c +++ b/hw/goldfish_battery.c @@ -203,8 +203,8 @@ void goldfish_battery_set_prop(int ac, int property, int value) void goldfish_battery_display(void (* callback)(void *data, const char* string), void *data) { - char buffer[100]; - char* value; + char buffer[100]; + const char* value; sprintf(buffer, "AC: %s\r\n", (battery_state->ac_online ? "online" : "offline")); callback(data, buffer); |