[Mobies-commit] [commit] r4147 - UDM/trunk/src/UdmGme
ksmyth at redhat1.isis.vanderbilt.edu
ksmyth at redhat1.isis.vanderbilt.edu
Thu Dec 27 12:38:47 CST 2012
Author: ksmyth
Date: Thu Dec 27 12:38:46 2012
New Revision: 4147
Log:
GME IDs use lower-case hex
Modified:
UDM/trunk/src/UdmGme/UdmGme.cpp
Modified: UDM/trunk/src/UdmGme/UdmGme.cpp
==============================================================================
--- UDM/trunk/src/UdmGme/UdmGme.cpp Thu Dec 27 12:38:27 2012 (r4146)
+++ UDM/trunk/src/UdmGme/UdmGme.cpp Thu Dec 27 12:38:46 2012 (r4147)
@@ -2792,7 +2792,7 @@
string UdmId2GmeId(uniqueId_type udmId) {
char buffer[24];
- sprintf_s(buffer, "id-%04X-%08X", udmId / 100000000 + 100, udmId % 100000000);
+ sprintf_s(buffer, "id-%04x-%08x", udmId / 100000000 + 100, udmId % 100000000);
return string(buffer);
}
More information about the Mobies-commit
mailing list