Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libburn
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Libburnia
libburn
Commits
736d8b90
Commit
736d8b90
authored
Jun 07, 2010
by
Thomas Schmitt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reacted on harmless compiler warnings on Solaris
parent
8345eb8a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
cdrskin.c
cdrskin/cdrskin.c
+3
-2
cdrskin_timestamp.h
cdrskin/cdrskin_timestamp.h
+1
-1
init.c
libburn/init.c
+1
-1
No files found.
cdrskin/cdrskin.c
View file @
736d8b90
...
...
@@ -4200,8 +4200,9 @@ int Cdrskin_abort_handler(struct CdrskiN *skin, int signum, int flag)
if
(
getpid
()
!=
skin
->
control_pid
)
{
if
(
skin
->
verbosity
>=
Cdrskin_verbose_debuG
)
ClN
(
fprintf
(
stderr
,
"
\n
cdrskin_debug: ABORT : [%d] Thread rejected: pid=%d, signum=%d
\n
"
,
skin
->
control_pid
,
getpid
(),
signum
));
"
\n
cdrskin_debug: ABORT : [%lu] Thread rejected: pid=%lu, signum=%lu
\n
"
,
(
unsigned
long
int
)
skin
->
control_pid
,
(
unsigned
long
int
)
getpid
(),
(
unsigned
long
int
)
signum
));
#ifdef Not_yeT
/* >>> find more abstract and system independent way to determine
...
...
cdrskin/cdrskin_timestamp.h
View file @
736d8b90
#define Cdrskin_timestamP "2010.06.07.171
552
"
#define Cdrskin_timestamP "2010.06.07.171
706
"
libburn/init.c
View file @
736d8b90
...
...
@@ -342,7 +342,7 @@ char *burn_util_thread_id(pid_t pid, pthread_t tid, char text[80])
{
int
i
,
l
;
sprintf
(
text
,
"[%
d,"
,
getpid
());
sprintf
(
text
,
"[%
lu,"
,
(
unsigned
long
int
)
getpid
());
l
=
strlen
(
text
);
for
(
i
=
0
;
i
<
sizeof
(
pthread_t
)
&&
2
*
i
<
80
-
l
-
3
;
i
++
)
sprintf
(
text
+
l
+
2
*
i
,
...
...
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