Skip to content

Commit 442930f

Browse files
committed
Fix compiler error after the merge due to variable name mismatch
2 parents d9cf2fe + db13130 commit 442930f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/SqlDependency.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ private static void ObtainProcessDispatcher()
484484

485485
if (null != dependency)
486486
{
487-
_processDispatcher = SqlDependencyProcessDispatcher.SingletonProcessDispatcher; // Set to static instance.
487+
s_processDispatcher = SqlDependencyProcessDispatcher.SingletonProcessDispatcher; // Set to static instance.
488488

489489
// Serialize and set in native.
490490
using (MemoryStream stream = new())

0 commit comments

Comments
 (0)