FreeBSD: Cleanup tab indents.

This commit is contained in:
Florian Walpen 2021-08-03 23:17:19 +02:00 committed by falkTX
parent 25e09df3a6
commit f94f285ca5
2 changed files with 13 additions and 13 deletions

View File

@ -27,7 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
static inline char CAS(volatile UInt32 value, UInt32 newvalue, volatile void* addr)
{
return atomic_cmpset_32((uint32_t*)addr, value, newvalue);
return atomic_cmpset_32((uint32_t*)addr, value, newvalue);
}
#endif

View File

@ -27,19 +27,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
namespace Jack
{
struct JackRequest;
struct JackResult;
class JackPosixMutex;
class JackPosixThread;
class JackPosixSemaphore;
struct JackRequest;
struct JackResult;
class JackSocketServerChannel;
class JackSocketClientChannel;
class JackSocketServerNotifyChannel;
class JackSocketNotifyChannel;
class JackClientSocket;
class JackNetUnixSocket;
class JackPosixMutex;
class JackPosixThread;
class JackPosixSemaphore;
class JackSocketServerChannel;
class JackSocketClientChannel;
class JackSocketServerNotifyChannel;
class JackSocketNotifyChannel;
class JackClientSocket;
class JackNetUnixSocket;
}
/* __JackPlatformMutex__ */