Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b94ceeeb
Commit
b94ceeeb
authored
Jan 30, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel: Remove bogus breaks in tape.c
parent
e1e1f792
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tape.c
dlls/ntdll/tape.c
+2
-2
No files found.
dlls/ntdll/tape.c
View file @
b94ceeeb
...
...
@@ -480,7 +480,7 @@ NTSTATUS TAPE_DeviceIoControl( HANDLE device, HANDLE event,
case
IOCTL_TAPE_GET_MEDIA_PARAMS
:
status
=
TAPE_GetMediaParams
(
fd
,
(
TAPE_GET_MEDIA_PARAMETERS
*
)
out_buffer
);
break
;
case
IOCTL_TAPE_GET_POSITION
:
break
;
case
IOCTL_TAPE_GET_POSITION
:
status
=
TAPE_GetPosition
(
fd
,
((
TAPE_GET_POSITION
*
)
in_buffer
)
->
Type
,
(
TAPE_GET_POSITION
*
)
out_buffer
);
break
;
...
...
@@ -496,7 +496,7 @@ NTSTATUS TAPE_DeviceIoControl( HANDLE device, HANDLE event,
case
IOCTL_TAPE_SET_MEDIA_PARAMS
:
status
=
TAPE_SetMediaParams
(
fd
,
(
TAPE_SET_MEDIA_PARAMETERS
*
)
in_buffer
);
break
;
case
IOCTL_TAPE_SET_POSITION
:
break
;
case
IOCTL_TAPE_SET_POSITION
:
status
=
TAPE_SetPosition
(
fd
,
(
TAPE_SET_POSITION
*
)
in_buffer
);
break
;
case
IOCTL_TAPE_WRITE_MARKS
:
...
...
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