summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorder richter <der.richter@gmx.de>2024-02-20 21:24:54 +0100
committerder richter <der.richter@gmx.de>2024-02-21 20:46:53 +0100
commitd954646d29bfb7110253ea40d6ff853971425de0 (patch)
tree106e962ba203849983e1efc2903a825997712345 /osdep
parentd6fdc0ae746ce3304f47349ae1df2b1f089155aa (diff)
downloadmpv-d954646d29bfb7110253ea40d6ff853971425de0.tar.bz2
mpv-d954646d29bfb7110253ea40d6ff853971425de0.tar.xz
various: make mentions of macOS consistent
change all mentions and variations of OSX, OS X, MacOSX, MacOS X, etc consistent. use the official naming macOS.
Diffstat (limited to 'osdep')
-rw-r--r--osdep/path.h2
-rw-r--r--osdep/semaphore.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/osdep/path.h b/osdep/path.h
index 2c00ea56eb..a9b9a3237f 100644
--- a/osdep/path.h
+++ b/osdep/path.h
@@ -7,7 +7,7 @@
// The following type values are defined:
// "home" the native mpv-specific user config dir
// "old_home" same as "home", but lesser priority (compatibility)
-// "osxbundle" OSX bundle resource path
+// "osxbundle" macOS bundle resource path
// "global" the least priority, global config file location
// "desktop" path to desktop contents
//
diff --git a/osdep/semaphore.h b/osdep/semaphore.h
index 40cf3832f6..81da12d502 100644
--- a/osdep/semaphore.h
+++ b/osdep/semaphore.h
@@ -4,7 +4,7 @@
#include <sys/types.h>
#include <semaphore.h>
-// OSX provides non-working empty stubs, so we emulate them.
+// macOS provides non-working empty stubs, so we emulate them.
// This should be AS-safe, but cancellation issues were ignored.
// sem_getvalue() is not provided.
// sem_post() won't always correctly return an error on overflow.