Skip to content

Commit

Permalink
database: Fix invalid error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-M committed Mar 18, 2016
1 parent 093107c commit 79ba99b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/pgsql/notification.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (pgSQL *pgSQL) loadLayerIntroducingVulnerability(vulnerability *database.Vu
rows, err := pgSQL.Query(searchNotificationLayerIntroducingVulnerability,
vulnerability.ID, startID, limit+1)
if err != nil {
return 0, handleError("searchVulnerabilityFixedInFeature", err)
return 0, handleError("searchNotificationLayerIntroducingVulnerability", err)
}
defer rows.Close()

Expand Down

0 comments on commit 79ba99b

Please sign in to comment.