1
0
mirror of https://github.com/simh/simh.git synced 2026-01-31 05:43:06 +00:00

Compiler suggested cleanups

This commit is contained in:
Mark Pizzolato
2013-05-09 14:02:48 -07:00
parent ddb10425e7
commit d964df4eea
5 changed files with 16 additions and 16 deletions

View File

@@ -1315,7 +1315,7 @@ int32 PutMem(int32 addr, int32 data)
/* Check the condition register against the qbyte and return 1 if true */
int32 condition(int32 qbyte)
static int32 condition(int32 qbyte)
{
int32 r = 0, t, q;
t = (qbyte & 0xf0) >> 4;