diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-18 23:32:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-18 23:32:24 +0000 |
commit | 0883f50518f301a1ec62a8387f7c89cdbb656cad (patch) | |
tree | 4e1b4476eea6ab49c72a08d7f011a500bf11dd5d | |
parent | 26ead70a4eb3ae924fc32785cf9f51bc9a50ebae (diff) |
format string
-rw-r--r-- | sys/dev/ic/twe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/twe.c b/sys/dev/ic/twe.c index a2ad3c3d0cc..21ee1102166 100644 --- a/sys/dev/ic/twe.c +++ b/sys/dev/ic/twe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: twe.c,v 1.42 2013/11/18 20:21:51 deraadt Exp $ */ +/* $OpenBSD: twe.c,v 1.43 2013/11/18 23:32:23 deraadt Exp $ */ /* * Copyright (c) 2000-2002 Michael Shalayeff. All rights reserved. @@ -313,7 +313,7 @@ twe_attach(sc) } if (retry < 0) { - printf(errstr); + printf("%s", errstr); twe_dispose(sc); return 1; } |