Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Jan 2016 08:02:35 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r293467 - head/lib/libstand
Message-ID:  <201601090802.u0982Zjg084912@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ae
Date: Sat Jan  9 08:02:35 2016
New Revision: 293467
URL: https://svnweb.freebsd.org/changeset/base/293467

Log:
  Fix a typo.
  
  PR:		205722

Modified:
  head/lib/libstand/uuid_to_string.c

Modified: head/lib/libstand/uuid_to_string.c
==============================================================================
--- head/lib/libstand/uuid_to_string.c	Sat Jan  9 06:26:40 2016	(r293466)
+++ head/lib/libstand/uuid_to_string.c	Sat Jan  9 08:02:35 2016	(r293467)
@@ -107,5 +107,5 @@ uuid_to_string(const uuid_t *u, char **s
 	tohex(&w, 2, u->node[3]);
 	tohex(&w, 2, u->node[4]);
 	tohex(&w, 2, u->node[5]);
-	*w++ - '\0';
+	*w++ = '\0';
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601090802.u0982Zjg084912>