Skip to content
Snippets Groups Projects

Cmake fix

Closed Ghost User requested to merge cmake-fix into devel
2 files
+ 8
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 3
2
@@ -10,6 +10,7 @@
@@ -10,6 +10,7 @@
#include "maestro/i_ofi.h"
#include "maestro/i_ofi.h"
#include "maestro/i_statistics.h"
#include "maestro/i_statistics.h"
#include "i_subscription_registry.h"
#include "i_subscription_registry.h"
 
#include "maestro/i_misc.h"
#include <unistd.h>
#include <unistd.h>
#include <inttypes.h>
#include <inttypes.h>
@@ -320,7 +321,7 @@ mstro_pc__construct_gfs_path_for_cdo(const mstro_cdo src_cdo,
@@ -320,7 +321,7 @@ mstro_pc__construct_gfs_path_for_cdo(const mstro_cdo src_cdo,
/* make the directory path */
/* make the directory path */
WITH_CDO_ID_STR(idstr, &src_cdo->gid, {
WITH_CDO_ID_STR(idstr, &src_cdo->gid, {
int n = snprintf(*path, l1, "%s%" PRIappid "/%s/",
size_t n = snprintf(*path, l1, "%s%" PRIappid "/%s/",
g_mstro_transport_gfs_dir,
g_mstro_transport_gfs_dir,
g_pool_app_id,
g_pool_app_id,
idstr);
idstr);
@@ -338,7 +339,7 @@ mstro_pc__construct_gfs_path_for_cdo(const mstro_cdo src_cdo,
@@ -338,7 +339,7 @@ mstro_pc__construct_gfs_path_for_cdo(const mstro_cdo src_cdo,
/* this time make the file path */
/* this time make the file path */
WITH_CDO_ID_STR(idstr, &src_cdo->gid, {
WITH_CDO_ID_STR(idstr, &src_cdo->gid, {
int n = snprintf(*path, l, "%s%" PRIappid "/%s/%" PRIlocalid,
size_t n = snprintf(*path, l, "%s%" PRIappid "/%s/%" PRIlocalid,
g_mstro_transport_gfs_dir,
g_mstro_transport_gfs_dir,
g_pool_app_id,
g_pool_app_id,
idstr,
idstr,
Loading