Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #357, Replace quotes with angle brackets in /inc #358

Merged
merged 1 commit into from
Jan 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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