From: heister <heister@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Mon, 30 Sep 2013 00:50:21 +0000 (+0000)
Subject: remove hdf5 related compiler warning
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4c0469521b94d24a9c2f5ef207258f47f2865d4;p=dealii-svn.git

remove hdf5 related compiler warning

git-svn-id: https://svn.dealii.org/trunk@31022 0785d39b-7218-0410-832d-ea1e28bc413d
---

diff --git a/deal.II/source/base/data_out_base.cc b/deal.II/source/base/data_out_base.cc
index 37b34d217f..24cc56da12 100644
--- a/deal.II/source/base/data_out_base.cc
+++ b/deal.II/source/base/data_out_base.cc
@@ -7093,7 +7093,7 @@ void DataOutBase::write_hdf5_parallel (const std::vector<Patch<dim,spacedim> > &
   // are no patches
   Assert (data_filter.n_nodes() > 0, ExcNoPatches());
 #else
-  hid_t           h5_mesh_file_id, h5_solution_file_id, file_plist_id, plist_id;
+  hid_t           h5_mesh_file_id=-1, h5_solution_file_id, file_plist_id, plist_id;
   hid_t           node_dataspace, node_dataset, node_file_dataspace, node_memory_dataspace;
   hid_t           cell_dataspace, cell_dataset, cell_file_dataspace, cell_memory_dataspace;
   hid_t           pt_data_dataspace, pt_data_dataset, pt_data_file_dataspace, pt_data_memory_dataspace;