From 29f5093bf0e4599422f8eb2186e16ffcd9648489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B3pez=20Guimaraes?= Date: Mon, 15 Jul 2024 22:19:11 +0100 Subject: [PATCH] nn/dlp: Fix Initialize functions on ServerPrivate These functions were pointing to the `Server` implementation, and not the `ServerPrivate` one. Fix the typo using the correct `ServerPrivate` export instead. --- include/nn/dlp/Cafe.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/nn/dlp/Cafe.h b/include/nn/dlp/Cafe.h index 8b6220810..ffd3bec7a 100644 --- a/include/nn/dlp/Cafe.h +++ b/include/nn/dlp/Cafe.h @@ -287,7 +287,7 @@ namespace Cafe { uint8_t childIndex, uint32_t blockBufferSize, uint32_t blockBufferNum, - nn::cfg::CTR::UserName *userName) asm("Initialize__Q4_2nn3dlp4Cafe6ServerSFUcUiT1PQ4_2nn3cfg3CTR8UserName"); + nn::cfg::CTR::UserName *userName) asm("Initialize__Q4_2nn3dlp4Cafe13ServerPrivateSFUcUiT1N22PQ4_2nn3cfg3CTR8UserName"); /** * Initializes DLP. @@ -320,7 +320,7 @@ namespace Cafe { uint8_t childIndex, uint32_t blockBufferSize, uint32_t blockBufferNum, - nn::cfg::CTR::UserName *userName) asm("Initialize__Q4_2nn3dlp4Cafe6ServerSFPbUcUiT2PQ4_2nn3cfg3CTR8UserName"); + nn::cfg::CTR::UserName *userName) asm("Initialize__Q4_2nn3dlp4Cafe13ServerPrivateSFPbUcUiT2N23PQ4_2nn3cfg3CTR8UserName"); }; } // namespace Cafe