mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-26 05:42:17 +00:00
Fix double semi-colon
This commit is contained in:
parent
bd40d4f237
commit
0c590eb768
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ namespace ams::mitm::fs {
|
||||||
constexpr size_t ThreadStackSize = mitm::ModuleTraits<fs::MitmModule>::StackSize;
|
constexpr size_t ThreadStackSize = mitm::ModuleTraits<fs::MitmModule>::StackSize;
|
||||||
alignas(os::MemoryPageSize) u8 g_extra_thread_stacks[NumExtraThreads][ThreadStackSize];
|
alignas(os::MemoryPageSize) u8 g_extra_thread_stacks[NumExtraThreads][ThreadStackSize];
|
||||||
|
|
||||||
os::Thread g_extra_threads[NumExtraThreads];;
|
os::Thread g_extra_threads[NumExtraThreads];
|
||||||
|
|
||||||
void LoopServerThread(void *arg) {
|
void LoopServerThread(void *arg) {
|
||||||
/* Loop forever, servicing our services. */
|
/* Loop forever, servicing our services. */
|
||||||
|
|
Loading…
Reference in a new issue