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:
Daniel Jacobowitz 2006-03-30 16:56:30 +00:00
parent 61d9b92fc1
commit bb858e6a2c
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
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.
2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
* cli/cli-script.c (insert_args): Handle NULL user_args.

View File

@ -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__,