##// 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,10 +488,9 static PyObject *dirstate_item_new_norma
488 to make sure it is correct. */
488 to make sure it is correct. */
489 static PyObject *dirstate_item_set_possibly_dirty(dirstateItemObject *self)
489 static PyObject *dirstate_item_set_possibly_dirty(dirstateItemObject *self)
490 {
490 {
491 if (self->flags |= dirstate_flag_possibly_dirty) {
491 self->flags |= dirstate_flag_possibly_dirty;
492 Py_RETURN_NONE;
492 Py_RETURN_NONE;
493 }
493 }
494 }
495
494
496 /* See docstring of the python implementation for details */
495 /* See docstring of the python implementation for details */
497 static PyObject *dirstate_item_set_clean(dirstateItemObject *self,
496 static PyObject *dirstate_item_set_clean(dirstateItemObject *self,
General Comments 0
You need to be logged in to leave comments. Login now