Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
0d7f2354
Commit
0d7f2354
authored
Oct 21, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few warnings
parent
b527c3fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/vlc_common.h
include/vlc_common.h
+1
-1
include/vlc_config.h
include/vlc_config.h
+2
-2
No files found.
include/vlc_common.h
View file @
0d7f2354
...
@@ -727,7 +727,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
...
@@ -727,7 +727,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
SetDWBE
(
p
,
(
i_qw
>>
32
)
&
0xffffffff
);
SetDWBE
(
p
,
(
i_qw
>>
32
)
&
0xffffffff
);
}
}
#if WORDS_BIGENDIAN
#if
def
WORDS_BIGENDIAN
# define hton16(i) ( i )
# define hton16(i) ( i )
# define hton32(i) ( i )
# define hton32(i) ( i )
# define hton64(i) ( i )
# define hton64(i) ( i )
...
...
include/vlc_config.h
View file @
0d7f2354
...
@@ -45,9 +45,9 @@
...
@@ -45,9 +45,9 @@
#define THREAD_COND_TIMEOUT 1
#define THREAD_COND_TIMEOUT 1
/* The configuration file and directory */
/* The configuration file and directory */
#if
def SYS_BEOS
#if
defined (SYS_BEOS)
# define CONFIG_DIR "config/settings/VideoLAN Client"
# define CONFIG_DIR "config/settings/VideoLAN Client"
#elif
__APPLE__
#elif
defined (__APPLE__)
# define CONFIG_DIR "Library/Preferences/VLC"
# define CONFIG_DIR "Library/Preferences/VLC"
#elif defined( WIN32 ) || defined( UNDER_CE )
#elif defined( WIN32 ) || defined( UNDER_CE )
# define CONFIG_DIR "vlc"
# define CONFIG_DIR "vlc"
...
...
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