[fix] gdb-server unused variable

pull/11/head
Fabien Le Mentec 2011-10-14 15:02:06 -05:00
rodzic 902f3a7e70
commit 6463c75a4b
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -639,8 +639,9 @@ int serve(stlink_t *sl, int port) {
if(!strcmp(queryName, "Supported")) {
reply = strdup("PacketSize=3fff;qXfer:memory-map:read+");
} else if(!strcmp(queryName, "Xfer")) {
char *type, *op, *annex, *s_addr, *s_length;
char *type, *op, *s_addr, *s_length;
char *tok = params;
char *annex __attribute__((unused));
type = strsep(&tok, ":");
op = strsep(&tok, ":");