Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
address a todo
[simgrid.git] / src / msg / msg_io.cpp
index a37a312..031d2dd 100644 (file)
@@ -233,7 +233,7 @@ sg_size_t MSG_file_get_size(msg_file_t fd)
  */
 msg_error_t MSG_file_seek(msg_file_t fd, sg_offset_t offset, int origin)
 {
-  fd->seek(offset); // TODO re-add origin
+  fd->seek(offset, origin);
   return MSG_OK;
 }