diff options
author | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-07-11 14:32:34 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-07-11 14:32:34 +0000 |
commit | 5ddca3b91be519fc285a5e8c43c219a6188940e3 (patch) | |
tree | 3bb1516c7c4145ba1ef33b3d7bb58452f937c5df /ShellPkg/Library/BasePathLib | |
parent | a6ce6cf9925bf97dea8dd788b8e691e81efc70d5 (diff) | |
download | edk2-platforms-5ddca3b91be519fc285a5e8c43c219a6188940e3.tar.xz |
fix issue about slashes on end of comment line.
signed-off-by:jcarsey
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12003 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/BasePathLib')
-rw-r--r-- | ShellPkg/Library/BasePathLib/BasePathLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/BasePathLib/BasePathLib.c b/ShellPkg/Library/BasePathLib/BasePathLib.c index 53a2a095b5..b0d4bf34c2 100644 --- a/ShellPkg/Library/BasePathLib/BasePathLib.c +++ b/ShellPkg/Library/BasePathLib/BasePathLib.c @@ -79,7 +79,7 @@ PathCleanUpDirectories( }
//
- // Fix up the / vs \
+ // Fix up the '/' vs '\'
//
for (TempString = Path ; TempString != NULL && *TempString != CHAR_NULL ; TempString++) {
if (*TempString == L'/') {
|