Skip to content

Commit 1a69308

Browse files
Merge pull request #63 from riscv/crc64
Accept 64-bit addresses in CRC requests.
2 parents ecc181d + 503da09 commit 1a69308

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/gdb_server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2435,7 +2435,7 @@ static int gdb_query_packet(struct connection *connection,
24352435
char gdb_reply[10];
24362436
char *separator;
24372437
uint32_t checksum;
2438-
uint32_t addr = 0;
2438+
target_addr_t addr = 0;
24392439
uint32_t len = 0;
24402440

24412441
/* skip command character */

0 commit comments

Comments
 (0)