From 16a47aaa8345987e6759ba6a33bb4bd5e951be5d Mon Sep 17 00:00:00 2001 From: nicm <> Date: Tue, 5 Jul 2011 19:01:31 +0000 Subject: Fix some awful code in the example, pointed out by millert@. --- src/lib/libc/string/wcsdup.3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/libc/string/wcsdup.3 b/src/lib/libc/string/wcsdup.3 index 37f82181eb..4d29ac218f 100644 --- a/src/lib/libc/string/wcsdup.3 +++ b/src/lib/libc/string/wcsdup.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: wcsdup.3,v 1.1 2011/07/04 04:37:34 nicm Exp $ +.\" $OpenBSD: wcsdup.3,v 1.2 2011/07/05 19:01:31 nicm Exp $ .\" $NetBSD: wcsdup.3,v 1.3 2010/12/16 17:42:28 wiz Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" from: @(#)strdup.3 8.1 (Berkeley) 6/9/93 .\" -.Dd $Mdocdate: July 4 2011 $ +.Dd $Mdocdate: July 5 2011 $ .Dt WCSDUP 3 .Os .Sh NAME @@ -63,7 +63,7 @@ to an allocated area of memory containing the nul-terminated string .Bd -literal -offset indent wchar_t *p; -if (p = wcsdup(L"foobar"), p == NULL) { +if ((p = wcsdup(L"foobar")) == NULL) { fprintf(stderr, "Out of memory.\en"); exit(1); } -- cgit v1.2.3-55-g6feb