Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
haukeduden committed Jun 27, 2022
1 parent 3aa4646 commit b7e9bbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/countly_c.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ extern "C" int countly_c_recordEvent(
ev.addSegmentation("view", std::string(screenName));
}

ev.setTimestamp()
ev.setTimestamp();

Countly::getInstance().addEvent(ev);

Expand All @@ -168,7 +168,7 @@ extern "C" int countly_c_recordScreenView(
initEventSegmentation(ev, segmentationParams, segmentationParamCount);
ev.addSegmentation("name", std::string(screenName));

ev.setTimestamp()
ev.setTimestamp();

Countly::getInstance().addEvent(ev);

Expand Down

0 comments on commit b7e9bbb

Please sign in to comment.