summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcell/lib/runtime/gc_job_manager_impl.cc2
-rw-r--r--gnuradio-core/src/lib/filter/gr_fir_fff_altivec.cc1
2 files changed, 2 insertions, 1 deletions
diff --git a/gcell/lib/runtime/gc_job_manager_impl.cc b/gcell/lib/runtime/gc_job_manager_impl.cc
index 4469d5023..cc49fd1f3 100644
--- a/gcell/lib/runtime/gc_job_manager_impl.cc
+++ b/gcell/lib/runtime/gc_job_manager_impl.cc
@@ -712,7 +712,7 @@ static void
pthread_create_failure_msg(int r, const char *which)
{
char buf[256];
- char *s = 0;
+ const char *s = 0;
switch (r){
case EAGAIN: s = "EAGAIN"; break;
diff --git a/gnuradio-core/src/lib/filter/gr_fir_fff_altivec.cc b/gnuradio-core/src/lib/filter/gr_fir_fff_altivec.cc
index 8fc5bcd7d..996e80cd2 100644
--- a/gnuradio-core/src/lib/filter/gr_fir_fff_altivec.cc
+++ b/gnuradio-core/src/lib/filter/gr_fir_fff_altivec.cc
@@ -28,6 +28,7 @@
#include <gr_math.h>
#include <gr_altivec.h>
#include <dotprod_fff_altivec.h>
+#include <string.h>
#include "posix_memalign.h"
gr_fir_fff_altivec::gr_fir_fff_altivec()