mirror of https://github.com/ArduPilot/ardupilot
AP_Filesystem: BOOL for binary types
This commit is contained in:
parent
bb1758ecb1
commit
e86d5e113f
|
@ -47,7 +47,7 @@ typedef struct {
|
||||||
#define MAX_FILES 16
|
#define MAX_FILES 16
|
||||||
static FAT_FILE *file_table[MAX_FILES];
|
static FAT_FILE *file_table[MAX_FILES];
|
||||||
|
|
||||||
static int isatty_(int fileno)
|
static bool isatty_(int fileno)
|
||||||
{
|
{
|
||||||
if (fileno >= 0 && fileno <= 2) {
|
if (fileno >= 0 && fileno <= 2) {
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue