Skip to content

Commit

Permalink
Fix compilation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
boatbod committed Jun 2, 2018
1 parent cfdcaca commit 3dd61ca
Show file tree
Hide file tree
Showing 7 changed files with 10,199 additions and 4,594 deletions.
2,473 changes: 1,714 additions & 759 deletions docs/doxygen/Doxyfile.in

Large diffs are not rendered by default.

2,457 changes: 1,685 additions & 772 deletions docs/doxygen/Doxyfile.swig_doc.in

Large diffs are not rendered by default.

2,473 changes: 1,714 additions & 759 deletions op25/gr-op25/docs/doxygen/Doxyfile.in

Large diffs are not rendered by default.

2,457 changes: 1,685 additions & 772 deletions op25/gr-op25/docs/doxygen/Doxyfile.swig_doc.in

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion op25/gr-op25/lib/p25cai_du_handler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ p25cai_du_handler::handle(data_unit_sptr du)
const size_t CAI_SZ = du->size();
uint8_t cai[CAI_SZ];
du->decode_frame(CAI_SZ, cai);
write(d_cai, cai, CAI_SZ);
if (write(d_cai, cai, CAI_SZ) < 0)
printf("error %d: %s\n", errno, strerror(errno));
}
data_unit_handler::handle(du);
}
2,473 changes: 1,714 additions & 759 deletions op25/gr-op25_repeater/docs/doxygen/Doxyfile.in

Large diffs are not rendered by default.

2,457 changes: 1,685 additions & 772 deletions op25/gr-op25_repeater/docs/doxygen/Doxyfile.swig_doc.in

Large diffs are not rendered by default.

0 comments on commit 3dd61ca

Please sign in to comment.