Skip to content

Commit

Permalink
Fix headers
Browse files Browse the repository at this point in the history
  • Loading branch information
sameerzuberi committed Nov 12, 2024
1 parent 1396360 commit 54e71c3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ggdeploymentd/src/dependency_resolver.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "dependency_resolver.h"
#include "component_manager.h"
#include "deployment_configuration.h"
#include <sys/types.h>
#include <assert.h>
#include <fcntl.h>
#include <ggl/base64.h>
Expand All @@ -21,6 +22,8 @@
#include <ggl/semver.h>
#include <limits.h>
#include <string.h>
#include <stdbool.h>
#include <stdint.h>

static GglError get_device_thing_groups(GglBuffer *response) {
GglByteVec data_endpoint = GGL_BYTE_VEC(config.data_endpoint);
Expand Down
1 change: 1 addition & 0 deletions ggdeploymentd/src/dependency_resolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include "deployment_handler.h"
#include <ggl/alloc.h>
#include <ggl/buffer.h>
#include <ggl/error.h>
#include <ggl/object.h>
#include <ggl/vector.h>
Expand Down
1 change: 0 additions & 1 deletion ggdeploymentd/src/deployment_configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#ifndef GGDEPLOYMENTD_DEPLOYMENT_CONFIGURATION_H
#define GGDEPLOYMENTD_DEPLOYMENT_CONFIGURATION_H

#include <ggl/buffer.h>
#include <ggl/error.h>
#include <ggl/vector.h>

Expand Down
4 changes: 2 additions & 2 deletions ggdeploymentd/src/deployment_model.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ typedef enum {
} GglDeploymentState;

typedef enum {
LOCAL,
IOT_JOBS
LOCAL,
IOT_JOBS
} GglDeploymentType;

typedef struct {
Expand Down

0 comments on commit 54e71c3

Please sign in to comment.