diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-06-21 17:37:32 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-06-21 17:37:32 -0700 |
commit | 3c8fdf6e35bed077a5614b4094770e668c96b9e9 (patch) | |
tree | 414fe12ed24e6e5573805fa4b8dfc84994f71c56 /src/fontfile/dirfile.c | |
parent | 8e3d94c867741319bf75b47266176cf677218641 (diff) |
Fix comments to reflect removal of OS/2 support
Commit 6c29007756301 removed OS/2 support from the code,
but missed updating the comments to match.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/fontfile/dirfile.c')
-rw-r--r-- | src/fontfile/dirfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontfile/dirfile.c b/src/fontfile/dirfile.c index a875408..04125b5 100644 --- a/src/fontfile/dirfile.c +++ b/src/fontfile/dirfile.c @@ -83,7 +83,7 @@ FontFileReadDirectory (const char *directory, FontDirectoryPtr *pdir) #if !defined(WIN32) if ((ptr = strchr(directory, ':'))) { #else - /* OS/2 and WIN32 path might start with a drive letter, don't clip this */ + /* WIN32 path might start with a drive letter, don't clip this */ if ((ptr = strchr(directory+2, ':'))) { #endif strncpy(dir_path, directory, ptr - directory); |