Typo fix - = instead of ==

This commit is contained in:
Gergely Polonkai 2013-09-22 22:58:18 +02:00
parent a918338bdf
commit 20aacb8c6d
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ gswe_moment_calculate_house_positions(GsweMoment *moment, GError **err)
// If no house system is set, we need no calculations at all. Just leave
// the list empty and return
if (moment->priv->house_system = GSWE_HOUSE_SYSTEM_NONE) {
if (moment->priv->house_system == GSWE_HOUSE_SYSTEM_NONE) {
moment->priv->house_revision = moment->priv->revision;
return;