cvs commit: src/sys/ddb db_access.c

Hartmut Brandt harti at FreeBSD.org
Tue Aug 12 06:24:23 PDT 2003


harti       2003/08/12 06:24:21 PDT

  FreeBSD src repository

  Modified files:
    sys/ddb              db_access.c 
  Log:
  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).
  
  Revision  Changes    Path
  1.17      +1 -1      src/sys/ddb/db_access.c


More information about the cvs-src mailing list