* prepare for 0.9.6

This commit is contained in:
Dirk-Jan C. Binnema
2011-05-28 12:29:53 +03:00
parent 39ad685e1d
commit 61f462c4ad
5 changed files with 16 additions and 5 deletions

View File

@ -343,7 +343,7 @@ mu_str_size_parse_kmg (const char* str)
case 'b': return num; /* bytes */
case 'k': return num * 1000; /* kilobyte */
case 'm': return num * 1000 * 1000; /* megabyte */
/* case 'g': return num * 1000 * 1000 * 1000; /\* gigabyte *\/ */
/* case 'g': return num * 1000 * 1000 * 1000; /\* gigabyte *\/ */
default:
return G_MAXUINT64;
}