summaryrefslogtreecommitdiff
path: root/src/common/fs/file.h
diff options
context:
space:
mode:
authorGravatar Morph2021-06-16 14:03:01 -0400
committerGravatar GitHub2021-06-16 14:03:01 -0400
commit92942fe01bf290d247e1a51562a07fe280448b47 (patch)
tree0868b1e5d5ae17a77dc18f678eb454b3e8f16c2b /src/common/fs/file.h
parentMerge pull request #6462 from Morph1984/proper-flush (diff)
parentcommon: fs: file: Remove redundant call to WriteStringToFile (diff)
downloadyuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.gz
yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.xz
yuzu-92942fe01bf290d247e1a51562a07fe280448b47.zip
Merge pull request #6460 from Morph1984/fs-access-log-fix
fsp_srv: Fix filesystem access logging
Diffstat (limited to '')
-rw-r--r--src/common/fs/file.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/fs/file.h b/src/common/fs/file.h
index 50e270c5b..0f10b6003 100644
--- a/src/common/fs/file.h
+++ b/src/common/fs/file.h
@@ -71,7 +71,7 @@ template <typename Path>
71 71
72/** 72/**
73 * Writes a string to a file at path and returns the number of characters successfully written. 73 * Writes a string to a file at path and returns the number of characters successfully written.
74 * If an file already exists at path, its contents will be erased. 74 * If a file already exists at path, its contents will be erased.
75 * If the filesystem object at path is not a file, this function returns 0. 75 * If the filesystem object at path is not a file, this function returns 0.
76 * 76 *
77 * @param path Filesystem path 77 * @param path Filesystem path
@@ -95,7 +95,6 @@ template <typename Path>
95 95
96/** 96/**
97 * Appends a string to a file at path and returns the number of characters successfully written. 97 * Appends a string to a file at path and returns the number of characters successfully written.
98 * If a file does not exist at path, WriteStringToFile is called instead.
99 * If the filesystem object at path is not a file, this function returns 0. 98 * If the filesystem object at path is not a file, this function returns 0.
100 * 99 *
101 * @param path Filesystem path 100 * @param path Filesystem path