We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af7d6a5 commit 6db7bb3Copy full SHA for 6db7bb3
tests/pdal/test_pdalc_utils.c
@@ -61,9 +61,9 @@ char *PDALReadPipelineJson(const char *path)
61
return json;
62
}
63
64
-PDALPipelinePtr *PDALLoadPipeline(const char *path)
+PDALPipelinePtr PDALLoadPipeline(const char *path)
65
{
66
- PDALPipelinePtr *pipeline = NULL;
+ PDALPipelinePtr pipeline = NULL;
67
char *json = PDALReadPipelineJson(path);
68
69
if (json)
tests/pdal/test_pdalc_utils.h
@@ -50,4 +50,4 @@ char *PDALReadPipelineJson(const char *path);
50
* @param path The path to the PDAL pipeline JSON file
51
* @return The loaded PDAL pipeline
52
*/
53
-PDALPipelinePtr *PDALLoadPipeline(const char *path);
+PDALPipelinePtr PDALLoadPipeline(const char *path);
0 commit comments