diff options
author | eb | 2009-02-18 03:04:20 +0000 |
---|---|---|
committer | eb | 2009-02-18 03:04:20 +0000 |
commit | 01b6697b18e1e04ce0a8709f82c170f2076e4cda (patch) | |
tree | 8244472b8c59bfc408aad130751ba9c562b7827a /gcell | |
parent | 29839da9cc9ade9ce28cefcfc0530055623d0b8b (diff) | |
download | gnuradio-01b6697b18e1e04ce0a8709f82c170f2076e4cda.tar.gz gnuradio-01b6697b18e1e04ce0a8709f82c170f2076e4cda.tar.bz2 gnuradio-01b6697b18e1e04ce0a8709f82c170f2076e4cda.zip |
gcc 4.3 cleanup
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10459 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gcell')
-rw-r--r-- | gcell/lib/runtime/gc_job_manager_impl.cc | 2 |
1 files changed, 1 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; |