Yet more clang-formatting
This commit is contained in:
@@ -814,9 +814,9 @@ void
|
||||
plat_get_global_config_dir(char *strptr)
|
||||
{
|
||||
#ifdef __APPLE__
|
||||
char* prefPath = SDL_GetPrefPath(NULL, "net.86Box.86Box")
|
||||
char *prefPath = SDL_GetPrefPath(NULL, "net.86Box.86Box")
|
||||
#else
|
||||
char* prefPath = SDL_GetPrefPath(NULL, "86Box");
|
||||
char *prefPath = SDL_GetPrefPath(NULL, "86Box");
|
||||
#endif
|
||||
strncpy(strptr, prefPath, 1024);
|
||||
path_slash(strptr);
|
||||
@@ -1089,7 +1089,7 @@ main(int argc, char **argv)
|
||||
return 6;
|
||||
}
|
||||
|
||||
gfxcard[1] = 0;
|
||||
gfxcard[1] = 0;
|
||||
eventthread = SDL_ThreadID();
|
||||
blitmtx = SDL_CreateMutex();
|
||||
if (!blitmtx) {
|
||||
|
||||
@@ -200,8 +200,8 @@ plat_serpt_write(void *p, uint8_t data)
|
||||
static int
|
||||
open_pseudo_terminal(serial_passthrough_t *dev)
|
||||
{
|
||||
int master_fd = open("/dev/ptmx", O_RDWR | O_NONBLOCK);
|
||||
char *ptname;
|
||||
int master_fd = open("/dev/ptmx", O_RDWR | O_NONBLOCK);
|
||||
char *ptname;
|
||||
struct termios term_attr_raw;
|
||||
|
||||
if (!master_fd) {
|
||||
|
||||
Reference in New Issue
Block a user