Skip to content

Commit 6a89f40

Browse files
author
Sampsa Penna
committed
Skip: typo in preprocessor directive (merge commit)
Merge branch 'bugfix/fix-typo-in-dev-def' into 'main' * fix typo in dev mode definition See merge request https://gitlab.ci.csc.fi/sds-dev/sd-connect/swift-browser-ui/-/merge_requests/332 Approved-by: Monika Radaviciute <[email protected]> Co-authored-by: Sampsa Penna <[email protected]> Merged by Sampsa Penna <[email protected]>
2 parents a6737ec + 42520e6 commit 6a89f40

File tree

1 file changed

+2
-2
lines changed
  • swift_browser_ui_frontend/wasm/src

1 file changed

+2
-2
lines changed

swift_browser_ui_frontend/wasm/src/upinit.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ int add_recv_key(
4949

5050
if (flag == FTW_F)
5151
{
52-
#ifdef C4GH_WASM_DEv
52+
#ifdef C4GH_WASM_DEV
5353
printf("Adding receiver key in %s\n", path);
5454
#endif
5555
fd = open(path, O_RDONLY);
5656
amount = read(fd, fout, 1023);
5757
// Skip if couldn't read from the file or current session is NULL
5858
if (amount <= 0)
5959
{
60-
#ifdef C4GH_WASM_DEv
60+
#ifdef C4GH_WASM_DEV
6161
printf("Failed to open the receiver key.\n");
6262
#endif
6363
goto finalAddRecv;

0 commit comments

Comments
 (0)