diff options
author | 2015-04-29 08:18:54 +0200 | |
---|---|---|
committer | 2015-04-29 08:18:54 +0200 | |
commit | 76b978d039f922ed84796deb999389ebb1579191 (patch) | |
tree | 90e4fe3efe7a18b896e49fd7fb65ba7a144cac0f /src/lib/util/hashing.c | |
parent | 64219f27d20c0f6f2dc8c168c8c19ba9420f889d (diff) |
Cleanups and version bumpmame0161
Diffstat (limited to 'src/lib/util/hashing.c')
-rw-r--r-- | src/lib/util/hashing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/hashing.c b/src/lib/util/hashing.c index b4e2b7a9d6d..1481de34a12 100644 --- a/src/lib/util/hashing.c +++ b/src/lib/util/hashing.c @@ -167,7 +167,7 @@ bool crc32_t::from_string(const char *string, int length) //------------------------------------------------- const char *crc32_t::as_string(std::string &buffer) const -{ +{ strprintf(buffer, "%08x", m_raw); return buffer.c_str(); } |