Skip to content

Commit 7a21c7e

Browse files
committed
Use C-style comment
1 parent 7778326 commit 7a21c7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/riscv.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ static void map_file(char **ram_loc, const char *name)
234234
struct stat st;
235235
fstat(fd, &st);
236236

237-
// EMSCRIPTEN: We don't currently support location hints for the address of the mapping
238-
// https://github.com/emscripten-core/emscripten/blob/52bc455316b2f44d3a94104776a335a5861ad73b/system/lib/libc/emscripten_mmap.c#L105
237+
/* EMSCRIPTEN: We don't currently support location hints for the address of the mapping */
238+
/* https://github.com/emscripten-core/emscripten/blob/52bc455316b2f44d3a94104776a335a5861ad73b/system/lib/libc/emscripten_mmap.c#L105 */
239239
#if HAVE_MMAP && !defined(__EMSCRIPTEN__)
240240
/* remap to a memory region */
241241
*ram_loc = mmap(*ram_loc, st.st_size, PROT_READ | PROT_WRITE,

0 commit comments

Comments
 (0)