Bug 205722

Summary: usr/src/lib/libstand/uuid_to_string.c:110: wierd statement ?
Product: Base System Reporter: David Binderman <dcb314>
Component: miscAssignee: Andrey V. Elsukov <ae>
Status: Closed FIXED    
Severity: Affects Some People CC: ae
Priority: ---    
Version: CURRENT   
Hardware: Any   
OS: Any   

Description David Binderman 2015-12-30 10:12:42 UTC
[usr/src/lib/libstand/uuid_to_string.c:110]: (warning) Ineffective statement similar to '*A++;'. Did you intend to write '(*A)++;'?

    *w++ - '\0';

Maybe

    *w++ = '\0';
Comment 1 commit-hook freebsd_committer freebsd_triage 2016-01-09 08:03:38 UTC
A commit references this bug:

Author: ae
Date: Sat Jan  9 08:02:35 UTC 2016
New revision: 293467
URL: https://svnweb.freebsd.org/changeset/base/293467

Log:
  Fix a typo.

  PR:		205722

Changes:
  head/lib/libstand/uuid_to_string.c
Comment 2 Andrey V. Elsukov freebsd_committer freebsd_triage 2016-01-09 08:05:28 UTC
Thanks for the report!