Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
coshcage authored Apr 6, 2024
1 parent 8351f04 commit 04e1c12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sitable.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ BOOL siInsertIntoTable(P_TRANS ptrans, P_TABLE ptbl, ...)
switch (pt->ct)
{
case CT_CHAR:
cd.c = (char)va_arg(arg, char);
cd.c = (char)va_arg(arg, int);
pc = siCreateCell(&cd.c, pt->ct);
if (NULL != pt->phsh)
{
Expand All @@ -485,7 +485,7 @@ BOOL siInsertIntoTable(P_TRANS ptrans, P_TABLE ptbl, ...)
}
break;
case CT_SHORT:
cd.s = va_arg(arg, short);
cd.s = va_arg(arg, int);
pc = siCreateCell(&cd.s, pt->ct);
if (NULL != pt->phsh)
{
Expand Down

0 comments on commit 04e1c12

Please sign in to comment.