diff options
author | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-08 22:41:36 +0000 |
---|---|---|
committer | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-08 22:41:36 +0000 |
commit | e39563392159ec3fc9d4fcc12159906d24fb547b (patch) | |
tree | 2475a3dc272f415183028e28ee5e75695a4ec662 /StdLib/Include/sys | |
parent | a0cd353dd2c9db074dfa90cb8df90f52c61f832f (diff) | |
download | edk2-platforms-e39563392159ec3fc9d4fcc12159906d24fb547b.tar.xz |
StdLib: Replace some non-ASCII characters with ASCII equivalents.
Signed-off-by: darylm503
Reviewed-by: jljusten
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12302 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'StdLib/Include/sys')
-rw-r--r-- | StdLib/Include/sys/dirent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StdLib/Include/sys/dirent.h b/StdLib/Include/sys/dirent.h index 373664d091..14c67ae128 100644 --- a/StdLib/Include/sys/dirent.h +++ b/StdLib/Include/sys/dirent.h @@ -68,7 +68,7 @@ struct dirent { // on the file system volume.
UINT64 Attribute; // The time the file was created.
struct timespec CreateTime; // The time when the file was last accessed.
- struct timespec LastAccessTime; // The time when the file’s contents were last modified.
+ struct timespec LastAccessTime; // The time when the file's contents were last modified.
struct timespec ModificationTime; // The attribute bits for the file. See below.
CHAR16 FileName[1]; // The Null-terminated name of the file.
};
|