mirror_zfs/lib
наб a1ba120927 Always use "%lld" for formatting time_ts
Given the following test program:
  #include <time.h>
  #include <stdio.h>
  #include <stdint.h>
  int main() {
    printf("time_t:    %d\n", sizeof(time_t));
    printf("long:      %d\n", sizeof(long));
    printf("long long: %d\n", sizeof(long long));
  }

These are output on various x86 architectures:
  x32$   time_t:    8
  x32$   long:      4
  x32$   long long: 8

  amd64$ time_t:    8
  amd64$ long:      8
  amd64$ long long: 8

  i386$  time_t:    4
  i386$  long:      4
  i386$  long long: 8

Therefore code using "%l[du]" to format time_ts produced warnings on x32

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Ryan Moeller <ryan@iXsystems.com>
Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@gmail.com>
Closes #10357
Closes #844
2020-05-28 10:29:58 -07:00
..
libavl OpenZFS restructuring - libspl 2019-10-02 10:39:48 -07:00
libefi cppcheck: (error) Memory leak: vtoc 2019-12-18 17:25:04 -08:00
libicp ICP: Improve AES-GCM performance 2020-02-10 12:59:50 -08:00
libnvpair Add FreeBSD support to OpenZFS 2020-04-14 11:36:28 -07:00
libshare Fix static data to link with -fno-common 2020-02-06 09:25:29 -08:00
libspl Always use "%lld" for formatting time_ts 2020-05-28 10:29:58 -07:00
libtpool OpenZFS restructuring - libspl 2019-10-02 10:39:48 -07:00
libunicode OpenZFS restructuring - libspl 2019-10-02 10:39:48 -07:00
libuutil Add FreeBSD support to OpenZFS 2020-04-14 11:36:28 -07:00
libzfs Always use "%lld" for formatting time_ts 2020-05-28 10:29:58 -07:00
libzfs_core Add support for boot environment data to be stored in the label 2020-05-07 09:36:33 -07:00
libzpool Combine OS-independent ABD Code into Common Source File 2020-05-10 12:23:52 -07:00
libzutil Add FreeBSD support to OpenZFS 2020-04-14 11:36:28 -07:00
Makefile.am Add FreeBSD support to OpenZFS 2020-04-14 11:36:28 -07:00