Skip to content

Commit

Permalink
fix gcc13 build errors (#2857)
Browse files Browse the repository at this point in the history
Signed-off-by: anandaravuri <ananda.ravuri@intel.com>
  • Loading branch information
anandaravuri committed Mar 1, 2023
1 parent ca17f74 commit 2f0e4f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions binaries/fpgabist/dma/fpga_dma.cpp
Expand Up @@ -437,8 +437,8 @@ static void dump_hw_desc_log(int i, msgdma_hw_desc_t *desc, ofstream &f)
static void *dispatcherWorker(void* dma_handle) {
uint64_t desc_count = 1;
msgdma_sw_desc_t *sw_desc[FPGA_DMA_BLOCK_SIZE+1];
msgdma_sw_desc_t *first_sw_desc;
msgdma_hw_descp_t *hw_descp;
msgdma_sw_desc_t *first_sw_desc = NULL ;
msgdma_hw_descp_t *hw_descp = NULL;
bool is_owned_by_hw;
uint8_t block_size = 0;
uint8_t format;
Expand Down
1 change: 1 addition & 0 deletions libraries/c++utils/cmd_handler.h
Expand Up @@ -30,6 +30,7 @@
#include <string>
#include <iostream>
#include <fstream>
#include <cstdint>

namespace intel
{
Expand Down

0 comments on commit 2f0e4f0

Please sign in to comment.