Skip to content

Commit 4842c36

Browse files
committed
Update code comment.
1 parent f45638e commit 4842c36

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

BlackHole/BlackHole.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -3868,8 +3868,7 @@ static OSStatus BlackHole_BeginIOOperation(AudioServerPlugInDriverRef inDriver,
38683868

38693869
static OSStatus BlackHole_DoIOOperation(AudioServerPlugInDriverRef inDriver, AudioObjectID inDeviceObjectID, AudioObjectID inStreamObjectID, UInt32 inClientID, UInt32 inOperationID, UInt32 inIOBufferFrameSize, const AudioServerPlugInIOCycleInfo* inIOCycleInfo, void* ioMainBuffer, void* ioSecondaryBuffer)
38703870
{
3871-
// This is called to actuall perform a given operation. For this device, all we need to do is
3872-
// clear the buffer for the ReadInput operation.
3871+
// This is called to actually perform a given operation.
38733872

38743873
#pragma unused(inClientID, inIOCycleInfo, ioSecondaryBuffer)
38753874

@@ -3934,7 +3933,6 @@ static OSStatus BlackHole_DoIOOperation(AudioServerPlugInDriverRef inDriver, Aud
39343933
buffer[frame*NUMBER_OF_CHANNELS+channel] = 0;
39353934
}
39363935
}
3937-
39383936
}
39393937

39403938
// clear the io buffer

0 commit comments

Comments
 (0)