diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2009-09-06 12:25:39 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2009-09-06 12:25:39 +0000 |
commit | a0a3a8e171527337e4324fdffcbfef4e884ff9af (patch) | |
tree | 44a9bde1b9eff3edc5eee4d13f2e870cb31e693f /sys/dev/usb/udl.c | |
parent | f16de0fb8f2ebbdd9cff066b6149e3ad71578976 (diff) |
Fix typo in comment, safe -> save.
Spotted by miod@
Diffstat (limited to 'sys/dev/usb/udl.c')
-rw-r--r-- | sys/dev/usb/udl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/udl.c b/sys/dev/usb/udl.c index 0762e35b97c..3f1e24b161d 100644 --- a/sys/dev/usb/udl.c +++ b/sys/dev/usb/udl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udl.c,v 1.32 2009/09/06 10:36:04 mglocker Exp $ */ +/* $OpenBSD: udl.c,v 1.33 2009/09/06 12:25:38 mglocker Exp $ */ /* * Copyright (c) 2009 Marcus Glocker <mglocker@openbsd.org> @@ -764,7 +764,7 @@ udl_do_cursor(struct rasops_info *ri) y = ri->ri_crow * ri->ri_font->fontheight; if (sc->sc_cursor_on == 0) { - /* safe the last character block to off-screen */ + /* save the last character block to off-screen */ (sc->udl_fb_block_copy)(sc, x, y, 0, sc->sc_ri.ri_emuheight, ri->ri_font->fontwidth, ri->ri_font->fontheight); @@ -774,7 +774,7 @@ udl_do_cursor(struct rasops_info *ri) sc->sc_cursor_on = 1; } else { - /* restore the last safed character from off-screen */ + /* restore the last saved character from off-screen */ (sc->udl_fb_block_copy)(sc, 0, sc->sc_ri.ri_emuheight, x, y, ri->ri_font->fontwidth, ri->ri_font->fontheight); |