mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[KS] Fix a bug found by GCC 13
This commit is contained in:
parent
109b84826e
commit
f5e54015ee
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ IKsProcessingObject_fnProcessingObjectWork(
|
||||||
{
|
{
|
||||||
|
|
||||||
/* check if the and-gate has been enabled again */
|
/* check if the and-gate has been enabled again */
|
||||||
if (&This->Gate.Count != 0)
|
if (This->Gate.Count != 0)
|
||||||
{
|
{
|
||||||
/* gate is open */
|
/* gate is open */
|
||||||
DPRINT1("processing object gate open\n");
|
DPRINT1("processing object gate open\n");
|
||||||
|
|
Loading…
Reference in a new issue