Skip to content

Commit

Permalink
Fix nasa#357, Replace quotes with angle brackets in /inc
Browse files Browse the repository at this point in the history
  • Loading branch information
dmknutsen committed Jan 6, 2023
1 parent 8368adc commit db6a8ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions fsw/inc/cf_extern_typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef CF_EXTERN_TYPEDEFS_H
#define CF_EXTERN_TYPEDEFS_H

#include "cf_platform_cfg.h"
#include <cf_platform_cfg.h>

/**
* @brief Values for CFDP file transfer class
Expand Down Expand Up @@ -70,4 +70,4 @@ typedef struct CF_TxnFilenames
char dst_filename[CF_FILENAME_MAX_LEN];
} CF_TxnFilenames_t;

#endif /* CF_EXTERN_TYPEDEFS_H */
#endif /* CF_EXTERN_TYPEDEFS_H */
8 changes: 4 additions & 4 deletions fsw/inc/cf_msg.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
#ifndef CF_MSG_H
#define CF_MSG_H

#include "cfe.h"
#include "cf_platform_cfg.h"
#include "cf_extern_typedefs.h"
#include "cf_tbldefs.h"
#include <cfe.h>
#include <cf_platform_cfg.h>
#include <cf_extern_typedefs.h>
#include <cf_tbldefs.h>

#define CF_ALL_CHANNELS (255)
#define CF_ALL_POLLDIRS (CF_ALL_CHANNELS)
Expand Down
4 changes: 2 additions & 2 deletions fsw/inc/cf_tbldefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
#ifndef CF_TBLDEFS_H
#define CF_TBLDEFS_H

#include "cf_platform_cfg.h"
#include "cf_extern_typedefs.h"
#include <cf_platform_cfg.h>
#include <cf_extern_typedefs.h>

/**
* \brief Configuration entry for directory polling
Expand Down

0 comments on commit db6a8ec

Please sign in to comment.