From 2cecf839a06ce951db0d5d95abf79004eff33ca7 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Sun, 10 Aug 2008 09:24:24 +0200 Subject: cache.c: use %zd for off_t argument Signed-off-by: Lars Hjemli --- cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache.c b/cache.c index 9f02cf5..57068a1 100644 --- a/cache.c +++ b/cache.c @@ -416,7 +416,7 @@ int cache_ls(const char *path) fullname, strerror(err), err); continue; } - printf("%s %s %10lld %s\n", + printf("%s %s %10zd %s\n", name, sprintftime("%Y-%m-%d %H:%M:%S", slot.cache_st.st_mtime), -- cgit v1.2.3-54-g00ecf '/'>cgit logo index : cgit
Web front-end for git that you're looking at right now. Might have had a few additions from upstream.
summaryrefslogtreecommitdiffstatshomepage
path: root/ui-clone.c
blob: 3a037ad9a7a9d1f49fe6a4e5b0c8a446f31ce837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104