Skip to content

Commit 36fd740

Browse files
committed
Add missing ;
1 parent 7b24693 commit 36fd740

File tree

1 file changed

+1
-1
lines changed
  • src/Microsoft.Data.SqlClient/netfx/src/Microsoft/Data/SqlClient

1 file changed

+1
-1
lines changed

src/Microsoft.Data.SqlClient/netfx/src/Microsoft/Data/SqlClient/TdsParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10384,7 +10384,7 @@ internal Task TdsExecuteRPC(SqlCommand cmd, IList<_SqlRPC> rpcArray, int timeout
1038410384
else
1038510385
{
1038610386
Debug.Assert(value is SqlChars, "Unknown value for Ansi datatype");
10387-
s = new string(((SqlChars)value).Value)
10387+
s = new string(((SqlChars)value).Value);
1038810388
}
1038910389
}
1039010390
else

0 commit comments

Comments
 (0)