Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
2ba95974
Commit
2ba95974
authored
Aug 21, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use standard putc_unlocked() instead of fputc_unlocked()
parent
55816ce9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/misc/logger.c
modules/misc/logger.c
+1
-1
src/misc/messages.c
src/misc/messages.c
+1
-1
No files found.
modules/misc/logger.c
View file @
2ba95974
...
...
@@ -351,7 +351,7 @@ static void TextPrint( void *opaque, int type, const msg_item_t *item,
flockfile
(
stream
);
utf8_fprintf
(
stream
,
"%s%s: "
,
item
->
psz_module
,
ppsz_type
[
type
]
);
utf8_fprintf
(
stream
,
fmt
,
ap
);
f
putc_unlocked
(
'\n'
,
stream
);
putc_unlocked
(
'\n'
,
stream
);
funlockfile
(
stream
);
vlc_restorecancel
(
canc
);
}
...
...
src/misc/messages.c
View file @
2ba95974
...
...
@@ -298,7 +298,7 @@ static void PrintMsg (void *d, int type, const msg_item_t *p_item,
utf8_fprintf
(
stream
,
"%s %s%s: "
,
p_item
->
psz_module
,
p_item
->
psz_object_type
,
msg_type
[
type
]);
utf8_vfprintf
(
stream
,
format
,
ap
);
f
putc_unlocked
(
'\n'
,
stream
);
putc_unlocked
(
'\n'
,
stream
);
#if defined (WIN32) || defined (__OS2__)
fflush
(
stream
);
#endif
...
...
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