mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-31 10:09:16 +08:00
2006-03-30 Vladimir Prus <ghost@cs.msu.su>
* remote.c (watchpoint_to_Z_packet): Use values of Z_packet_type enum instead of hardcoded integer literals.
This commit is contained in:
@ -4461,13 +4461,13 @@ watchpoint_to_Z_packet (int type)
|
||||
switch (type)
|
||||
{
|
||||
case hw_write:
|
||||
return 2;
|
||||
return Z_PACKET_WRITE_WP;
|
||||
break;
|
||||
case hw_read:
|
||||
return 3;
|
||||
return Z_PACKET_READ_WP;
|
||||
break;
|
||||
case hw_access:
|
||||
return 4;
|
||||
return Z_PACKET_ACCESS_WP;
|
||||
break;
|
||||
default:
|
||||
internal_error (__FILE__, __LINE__,
|
||||
|
Reference in New Issue
Block a user