From eaeb467139ed6c7322cdf42dfb9698811e00d8d8 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 20 Mar 2002 17:59:12 +0000 Subject: 2001-03-20 Joel Sherrill * PR143 * lib/include/rtems/termiostypes.h: Removed unneeded volatile on "theBuf" since no byte is read more than once anyway. --- c/src/exec/libcsupport/include/rtems/termiostypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c/src/exec') diff --git a/c/src/exec/libcsupport/include/rtems/termiostypes.h b/c/src/exec/libcsupport/include/rtems/termiostypes.h index fe19bd4cb4..adda9e0871 100644 --- a/c/src/exec/libcsupport/include/rtems/termiostypes.h +++ b/c/src/exec/libcsupport/include/rtems/termiostypes.h @@ -33,7 +33,7 @@ struct ttywakeup { * Variables associated with the character buffer */ struct rtems_termios_rawbuf { - volatile char *theBuf; + char *theBuf; volatile unsigned int Head; volatile unsigned int Tail; volatile unsigned int Size; -- cgit v1.2.3