svn commit: r293467 - head/lib/libstand

Andrey V. Elsukov ae at FreeBSD.org
Sat Jan 9 08:02:37 UTC 2016


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';
 }


More information about the svn-src-all mailing list