]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/store/firebird/firebird_store_services.cpp
Fix service payDay type for correct work on 32/64-bit
[stg.git] / projects / stargazer / plugins / store / firebird / firebird_store_services.cpp
index f7167acbdb7fe9211d6156b7dfdaf1c9c63d0fd1..84eab5fa885b66a8ad593d5a0cbd791f61824f1e 100644 (file)
@@ -80,7 +80,7 @@ try
          where name = ?");
     st->Set(1, sc.comment);
     st->Set(2, sc.cost);
-    st->Set(3, static_cast<long>(sc.payDay));
+    st->Set(3, static_cast<int16_t>(sc.payDay));
     st->Set(4, sc.name);
     st->Execute();
     tr->Commit();
@@ -115,7 +115,7 @@ try
         {
         st->Get(3, sc->comment);
         st->Get(4, sc->cost);
-        long pd;
+        int16_t pd;
         st->Get(5, pd);
         sc->payDay = pd;
         }