##// END OF EJS Templates
dirstate: fix compilation warnings in `dirstate_item_set_possibly_dirty()`...
Martin von Zweigbergk -
r48790:20187530 default
parent child Browse files
Show More
@@ -488,9 +488,8 b' static PyObject *dirstate_item_new_norma'
488 488 to make sure it is correct. */
489 489 static PyObject *dirstate_item_set_possibly_dirty(dirstateItemObject *self)
490 490 {
491 if (self->flags |= dirstate_flag_possibly_dirty) {
492 Py_RETURN_NONE;
493 }
491 self->flags |= dirstate_flag_possibly_dirty;
492 Py_RETURN_NONE;
494 493 }
495 494
496 495 /* See docstring of the python implementation for details */
General Comments 0
You need to be logged in to leave comments. Login now