diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-20 13:53:56 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-20 21:51:37 +0100 |
commit | eda770864b0c42416fb3239db2c15544840e636f (patch) | |
tree | 5acc9fa551ae86ddbdfc346933e031ba6dbfc510 | |
parent | 6f9c19e543125a5c35cc8a1e3c8c7cf7ecc7f010 (diff) |
kern/xpr.c: quiet warning about uninitialized variable
* kern/xpr.c (s): Initialize.
-rw-r--r-- | kern/xpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -154,7 +154,7 @@ void xpr_dump(base, nbufs) struct xprbuf *last, *ptr; struct xprbuf *x; int i; - spl_t s; + spl_t s = s; if (base == 0) { base = xprbase; |