K 10 svn:author V 5 harti K 8 svn:date V 27 2003-08-12T13:24:21.000000Z K 7 svn:log V 286 db_get_value uses a local buffer to first fetch all the bytes of a integer value and then to construct the integer from it. This buffer was sizeof(int) bytes long, which was fine until the (undocumented) 'g' modifier for 8-byte integers was introduced. Change this to sizeof(uint64_t). END