Update FSF address
[lttv.git] / lttv / modules / gui / statistics / statistics.c
index ce7186299af8d49959282ed74addb7ea00171b0c..5c900b7814161b8a16e7a0813c242bf4dfed1975 100644 (file)
@@ -12,8 +12,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, 
- * MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA 02110-1301, USA.
  */
 
 #ifdef HAVE_CONFIG_H
@@ -466,7 +466,9 @@ void show_traceset_stats(StatisticViewerData * statistic_viewer_data)
          value = lttv_attribute_add(tscs->stats,
                                     g_quark_from_static_string("WARNING: Live traceset"),
                                     LTTV_STRING);
-         *(value.v_string) = live_msg;
+         /* TODO ybrosseau 2012-03-15: add cast to silent discard const 
+                                       warning... find a better way */
+         *(value.v_string) = (char *)live_msg;
          
   }
   g_hash_table_insert(statistic_viewer_data->statistic_hash,
This page took 0.02848 seconds and 4 git commands to generate.