aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/apt.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-08-18 21:42:44 -0400
committerbunnei <bunneidev@gmail.com>2014-08-18 21:42:44 -0400
commite9c5c563a500ac19ecb2f580ce065a9010dedac9 (patch)
tree25155672077a81a5f1b66e738826a7b850c55e82 /src/core/hle/service/apt.h
parente179dceecfd379bd0aa400f85ebb873a43e63ee1 (diff)
parent98fa3f7cba22997aef8ec4d121584c2488389c38 (diff)
Merge pull request #55 from lioncash/string
Core: Alter the kernel string functions to use std::string instead of const char*.
Diffstat (limited to 'src/core/hle/service/apt.h')
-rw-r--r--src/core/hle/service/apt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/apt.h b/src/core/hle/service/apt.h
index dca3097ed..4c7dd07e7 100644
--- a/src/core/hle/service/apt.h
+++ b/src/core/hle/service/apt.h
@@ -29,7 +29,7 @@ public:
* Gets the string port name used by CTROS for the service
* @return Port name of service
*/
- const char *GetPortName() const {
+ std::string GetPortName() const {
return "APT:U";
}
};