diff options
author | Christian Grothoff <christian@grothoff.org> | 2018-11-04 11:23:46 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2018-11-04 11:23:55 +0100 |
commit | 98be5c2ca9f3da90616f20cc2d2385223e7b1735 (patch) | |
tree | b4cd905ae542d29b7fdd7e8fcbd60135e184dbfc | |
parent | b6d687a5bde3316c6a54b57e7db2aa5d7c26de22 (diff) |
version should be unsigned
-rw-r--r-- | src/plugins/xm_extractor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/xm_extractor.c b/src/plugins/xm_extractor.c index d0b62bd..854ff15 100644 --- a/src/plugins/xm_extractor.c +++ b/src/plugins/xm_extractor.c @@ -83,7 +83,7 @@ EXTRACTOR_xm_extract_method (struct EXTRACTOR_ExtractContext *ec) /* Version of Tracker */ snprintf (xmversion, sizeof (xmversion), - "%d.%d", + "%u.%u", head->version[1], head->version[0]); ADD (xmversion, EXTRACTOR_METATYPE_FORMAT_VERSION); |