Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d34ba18
)
Branch HEAD
author
yangsheng
<yangsheng>
Thu, 25 Sep 2008 13:34:07 +0000
(13:34 +0000)
committer
yangsheng
<yangsheng>
Thu, 25 Sep 2008 13:34:07 +0000
(13:34 +0000)
b=16771
Fix the build issue.
lustre/utils/llog_reader.c
patch
|
blob
|
history
diff --git
a/lustre/utils/llog_reader.c
b/lustre/utils/llog_reader.c
index
aefc7af
..
dcc0ac4
100644
(file)
--- a/
lustre/utils/llog_reader.c
+++ b/
lustre/utils/llog_reader.c
@@
-382,10
+382,10
@@
void print_lustre_cfg(struct lustre_cfg *lcfg, int *skip)
else
printf("EXCLUDE END ");
}
- ctime_r((const time_t *)
&marker->cm_createtime
, createtime);
+ ctime_r((const time_t *)
(&marker->cm_createtime)
, createtime);
createtime[strlen(createtime) - 1] = 0;
if (marker->cm_canceltime) {
- ctime_r((const time_t *)
&marker->cm_canceltime
,
+ ctime_r((const time_t *)
(&marker->cm_canceltime)
,
canceltime);
canceltime[strlen(canceltime) - 1] = 0;
}