diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-12 14:45:01 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-13 01:31:40 +0100 |
commit | 7924754e3005efd978a7847e15606dbcdd929cfc (patch) | |
tree | 167045d7e7d22ef1d9de7a997db5dff695d0bdf2 | |
parent | 5b4c30b91a052e6ae13025577b1ab323ef836bed (diff) |
kern: remove register qualifiers
* kern/xpr.c: Remove register qualifiers.
-rw-r--r-- | kern/xpr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -60,8 +60,8 @@ void xpr(msg, arg1, arg2, arg3, arg4, arg5) char *msg; int arg1, arg2, arg3, arg4, arg5; { - register spl_t s; - register struct xprbuf *x; + spl_t s; + struct xprbuf *x; /* If we aren't initialized, ignore trace request */ if (!xprenable || (xprptr == 0)) @@ -152,7 +152,7 @@ void xpr_dump(base, nbufs) jmp_buf_t db_jmpbuf; jmp_buf_t *prev; struct xprbuf *last, *ptr; - register struct xprbuf *x; + struct xprbuf *x; int i; spl_t s; |