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
5b5ae2eb
Commit
5b5ae2eb
authored
May 27, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed my latest BeOS support breakage.
parent
409f93dd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
plugins/dvd/dvd_ioctl.c
plugins/dvd/dvd_ioctl.c
+2
-2
No files found.
plugins/dvd/dvd_ioctl.c
View file @
5b5ae2eb
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* dvd_ioctl.c: DVD ioctl replacement function
* dvd_ioctl.c: DVD ioctl replacement function
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* Copyright (C) 1999-2001 VideoLAN
* $Id: dvd_ioctl.c,v 1.1
3 2001/05/25 13:20:09
sam Exp $
* $Id: dvd_ioctl.c,v 1.1
4 2001/05/27 15:16:58
sam Exp $
*
*
* Authors: Markus Kuespert <ltlBeBoy@beosmail.com>
* Authors: Markus Kuespert <ltlBeBoy@beosmail.com>
* Samuel Hocevar <sam@zoy.org>
* Samuel Hocevar <sam@zoy.org>
...
@@ -66,6 +66,7 @@ static void BeInitRDC ( raw_device_command *, int );
...
@@ -66,6 +66,7 @@ static void BeInitRDC ( raw_device_command *, int );
#define INIT_RDC( TYPE, SIZE ) \
#define INIT_RDC( TYPE, SIZE ) \
raw_device_command rdc; \
raw_device_command rdc; \
u8 p_buffer[ (SIZE) ]; \
u8 p_buffer[ (SIZE) ]; \
memset( &rdc, 0, sizeof( raw_device_command ) ); \
rdc.data = (char *)p_buffer; \
rdc.data = (char *)p_buffer; \
rdc.data_length = (SIZE); \
rdc.data_length = (SIZE); \
BeInitRDC( &rdc, (TYPE) );
BeInitRDC( &rdc, (TYPE) );
...
@@ -595,7 +596,6 @@ int ioctl_SendKey2( int i_fd, int *pi_agid, u8 *p_key )
...
@@ -595,7 +596,6 @@ int ioctl_SendKey2( int i_fd, int *pi_agid, u8 *p_key )
*****************************************************************************/
*****************************************************************************/
static
void
BeInitRDC
(
raw_device_command
*
p_rdc
,
int
i_type
)
static
void
BeInitRDC
(
raw_device_command
*
p_rdc
,
int
i_type
)
{
{
memset
(
p_rdc
,
0
,
sizeof
(
raw_device_command
)
);
memset
(
p_rdc
->
data
,
0
,
p_rdc
->
data_length
);
memset
(
p_rdc
->
data
,
0
,
p_rdc
->
data_length
);
switch
(
i_type
)
switch
(
i_type
)
...
...
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