mirror of
https://github.com/samba-team/samba.git
synced 2025-08-02 00:22:11 +03:00
examples/testsmbc.c - quiet implicit cast warnings on OpenSolaris
https://bugzilla.samba.org/show_bug.cgi?id=8767 Signed-off-by: Andrew Tridgell <tridge@samba.org>
This commit is contained in:
committed by
Andrew Tridgell
parent
a19185249a
commit
b2ff4b06d6
@ -240,10 +240,10 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
|
||||
fprintf(stdout, "Stat'ed file: %s. Size = %d, mode = %04X\n", file2,
|
||||
(int)st2.st_size, st2.st_mode);
|
||||
(int)st2.st_size, (unsigned int)st2.st_mode);
|
||||
fprintf(stdout, " time: %s\n", ctime(&st2.st_atime));
|
||||
fprintf(stdout, "Earlier stat: %s, Size = %d, mode = %04X\n", file,
|
||||
(int)st1.st_size, st1.st_mode);
|
||||
(int)st1.st_size, (unsigned int)st1.st_mode);
|
||||
fprintf(stdout, " time: %s\n", ctime(&st1.st_atime));
|
||||
|
||||
/* Now, make a directory ... */
|
||||
|
Reference in New Issue
Block a user