Fix a typo.

PR:		205722
This commit is contained in:
Andrey V. Elsukov 2016-01-09 08:02:35 +00:00
parent f2b2e77a41
commit 06ddd0b7ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=293467

View File

@ -107,5 +107,5 @@ uuid_to_string(const uuid_t *u, char **s, uint32_t *status)
tohex(&w, 2, u->node[3]);
tohex(&w, 2, u->node[4]);
tohex(&w, 2, u->node[5]);
*w++ - '\0';
*w++ = '\0';
}