]> git.pld-linux.org Git - packages/libstoragemgmt.git/blob - libstoragemgmt-types.patch
- added types patch (fixes build on x32)
[packages/libstoragemgmt.git] / libstoragemgmt-types.patch
1 --- libstoragemgmt-1.9.4/plugin/simc/mgm_ops.c.orig     2022-03-15 23:38:45.000000000 +0100
2 +++ libstoragemgmt-1.9.4/plugin/simc/mgm_ops.c  2022-05-08 20:14:24.552756902 +0200
3 @@ -107,7 +107,7 @@ static const char *time_stamp_str_get(ch
4  
5      if (clock_gettime(CLOCK_REALTIME, &ts) == 0)
6          snprintf(buff, _BUFF_SIZE, "%ld.%ld", (long)difftime(ts.tv_sec, 0),
7 -                 ts.tv_nsec);
8 +                 (long)ts.tv_nsec);
9  
10      return buff;
11  }
This page took 0.073553 seconds and 3 git commands to generate.