diff --git a/readLRI.m b/readLRI.m
index 6602549b746feca30db7996b7766dca193980cdb..794454cebd96c5e6cacdb77eee5e6c8e1d5d7ba2 100644
--- a/readLRI.m
+++ b/readLRI.m
@@ -18,9 +18,9 @@ fid = fopen(file);
   end
 
 % Reads the desired values from LRI1B data.
-[gps_time, range, range_rate, range_acc, lighttime_corr, lighttime_rate, lighttime_accl, tma_corr, tma_rate, tma_accl, pitch_A, yaw_A, pitch_B, yaw_B] = textread(file,'%f %f %f %f %*f %f %f %f %f %f %f %f %f %f %f %*f %*f %*f %*f %*f','headerlines',header);
+[gps_time, range, range_rate, range_acc, lighttime_corr, lighttime_rate, lighttime_accl, tma_corr, tma_rate, tma_accl, pitch_A, yaw_A, pitch_B, yaw_B] = textread(file,'%f %f %f %f %f %f %f %f %f %f %f %f %f %f %*f %*f %*f','headerlines',header);
 
 % Produces the matrix containing the desired values.
 LRI1B = [gps_time, range, range_rate, range_acc, lighttime_corr, lighttime_rate, lighttime_accl, tma_corr, tma_rate, tma_accl, pitch_A, yaw_A, pitch_B, yaw_B];
 
-end
\ No newline at end of file
+end