From 2fc9b9ee1ccba5a8db073a1047c7b5001a85d4cc Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Mon, 11 Jul 2016 20:05:23 +0300
Subject: [PATCH] InternalUnits --> InternalCodeUnits

---
 src/parallel_io.c | 2 +-
 src/serial_io.c   | 2 +-
 src/single_io.c   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/parallel_io.c b/src/parallel_io.c
index 0b66a4314c..20b12bdd9a 100644
--- a/src/parallel_io.c
+++ b/src/parallel_io.c
@@ -701,7 +701,7 @@ void write_output_parallel(struct engine* e, const char* baseName,
   writeUnitSystem(h_file, snapshot_units, "Units");
 
   /* Print the system of Units used internally */
-  writeUnitSystem(h_file, internal_units, "InternalUnits");
+  writeUnitSystem(h_file, internal_units, "InternalCodeUnits");
 
   /* Loop over all particle types */
   for (int ptype = 0; ptype < NUM_PARTICLE_TYPES; ptype++) {
diff --git a/src/serial_io.c b/src/serial_io.c
index c023303241..704d34ad67 100644
--- a/src/serial_io.c
+++ b/src/serial_io.c
@@ -759,7 +759,7 @@ void write_output_serial(struct engine* e, const char* baseName,
     writeUnitSystem(h_file, snapshot_units, "Units");
 
     /* Print the system of Units used internally */
-    writeUnitSystem(h_file, internal_units, "InternalUnits");
+    writeUnitSystem(h_file, internal_units, "InternalCodeUnits");
 
     /* Loop over all particle types */
     for (int ptype = 0; ptype < NUM_PARTICLE_TYPES; ptype++) {
diff --git a/src/single_io.c b/src/single_io.c
index 50fe44d751..9bb9941102 100644
--- a/src/single_io.c
+++ b/src/single_io.c
@@ -605,7 +605,7 @@ void write_output_single(struct engine* e, const char* baseName,
   writeUnitSystem(h_file, snapshot_units, "Units");
 
   /* Print the system of Units used internally */
-  writeUnitSystem(h_file, internal_units, "InternalUnits");
+  writeUnitSystem(h_file, internal_units, "InternalCodeUnits");
 
   /* Loop over all particle types */
   for (int ptype = 0; ptype < NUM_PARTICLE_TYPES; ptype++) {
-- 
GitLab