Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
freediameter
Commits
6a6d3bb1
Commit
6a6d3bb1
authored
Feb 10, 2010
by
Sebastien Decugis
Browse files
Fix diplay error
parent
f108a53c
Changes
1
Hide whitespace changes
Inline
Side-by-side
extensions/dbg_monitor/dbg_monitor.c
View file @
6a6d3bb1
...
...
@@ -78,7 +78,7 @@ static void * mn_thr(void * arg)
while
(
1
)
{
#ifdef DEBUG
for
(
i
++
;
i
%
30
;
i
++
)
{
fd_log_debug
(
"[dbg_monitor] %ih%*im%*is
\n
"
,
i
/
3600
,
2
,
i
/
60
,
2
,
i
%
60
);
/* This makes it easier to detect inactivity periods in the log file */
fd_log_debug
(
"[dbg_monitor] %ih%*im%*is
\n
"
,
i
/
3600
,
2
,
(
i
/
60
)
%
60
,
2
,
i
%
60
);
/* This makes it easier to detect inactivity periods in the log file */
sleep
(
1
);
}
#else
/* DEBUG */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment