svn commit: r195352 - projects/mips/sys/mips/include

Warner Losh imp at FreeBSD.org
Sun Jul 5 06:44:38 UTC 2009


Author: imp
Date: Sun Jul  5 06:44:37 2009
New Revision: 195352
URL: http://svn.freebsd.org/changeset/base/195352

Log:
  db_expr_t should be a intptr_t, not an int.  These expressions can be
  addresses or numbers, and that's a intptr_t if I ever saw one.

Modified:
  projects/mips/sys/mips/include/db_machdep.h

Modified: projects/mips/sys/mips/include/db_machdep.h
==============================================================================
--- projects/mips/sys/mips/include/db_machdep.h	Sun Jul  5 06:43:01 2009	(r195351)
+++ projects/mips/sys/mips/include/db_machdep.h	Sun Jul  5 06:44:37 2009	(r195352)
@@ -46,7 +46,7 @@ typedef struct trapframe db_regs_t;
 extern db_regs_t	ddb_regs;	/* register state */
 
 typedef	vm_offset_t	db_addr_t;	/* address - unsigned */
-typedef	int		db_expr_t;	/* expression - signed */
+typedef	intptr_t	db_expr_t;	/* expression - signed */
 
 #if BYTE_ORDER == _BIG_ENDIAN
 #define	BYTE_MSF	(1)


More information about the svn-src-projects mailing list