diff options
author | attilio <attilio@FreeBSD.org> | 2011-08-13 17:17:04 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2011-08-13 17:17:04 +0000 |
commit | 2601d6b9f1fb16ed6c3c94c8c246575b37e8cb58 (patch) | |
tree | eba84d78a7fe8d53dcc59ec79ed7d2c4d5648a17 /sys/mips | |
parent | 11c783ae3f03a5098cfec65d1e5aaa1409bcb373 (diff) | |
download | FreeBSD-src-2601d6b9f1fb16ed6c3c94c8c246575b37e8cb58.zip FreeBSD-src-2601d6b9f1fb16ed6c3c94c8c246575b37e8cb58.tar.gz |
Fix a typo in cb_dumpdata() about wrongly calling wdog_kern_pat().
Submitted by: Andrew Boyer <aboyer at averesystems dot com>
Approved by: re (kib)
Diffstat (limited to 'sys/mips')
-rw-r--r-- | sys/mips/mips/dump_machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/mips/dump_machdep.c b/sys/mips/mips/dump_machdep.c index 1dd69f7..bf8c4a3 100644 --- a/sys/mips/mips/dump_machdep.c +++ b/sys/mips/mips/dump_machdep.c @@ -188,7 +188,7 @@ cb_dumpdata(struct md_pa *mdp, int seqnr, void *arg) } #ifdef SW_WATCHDOG - wdog_kern_path(WD_LASTVAL); + wdog_kern_pat(WD_LASTVAL); #endif error = dump_write(di, (void *)(intptr_t)(pa),0, dumplo, sz); /* XXX fix PA */ if (error) |